MATLAB: Question about inputs and targer in the fitting tool for the neural matrix

neural network nnstart fitting tool

Hello i wanna classify samples with reural network so can i have a matrix (165×12 15840 double) as inputs and a matrix ( 165×1 20316 cell) as target

Best Answer

For classification of N I-dimensional inputs into c classes, use matrices with dimensions
[ I N ] = size(input)
[ c N ] = size(target)
where target colmns are columns of eye(c).
Hope this helps.
Thank you for formally accepting my answer
Greg