How to do Pattern Recognition with 3D input data using Deep Learning Toolbox?
Show older comments
If I have elements of 2D data that are put into a 3D inputs variable, is it possible to do pattern recognition on this data in MATLAB?
>> inputs = rand(3,3,10);
>> targets = ones(2,10);
>> net = patternnet(10);
>> net = train(net, inputs, targets) %error inputs must be 2D
>> nprtool %dropdown does not give 3D inputs variable as an option
Accepted Answer
More Answers (0)
Categories
Find more on Pattern Recognition in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!