MATLAB: I’m a PHD student and i’m new in Neural Network code, i have 4 intput scalar which give as output 2 matrix (9×9), can you help me

neural networks

PHD student asking NN

Best Answer

The data are N pairs of I-dimensional "I"nput column vectors and corresponding O-dimensional "O"utput target vectors stored in two matrices with sizes
[ I N ] = size(input)
and
[ O N ] = size(target)
Given the input and target matrix, see the HELP and DOC documentation examples for FITNET and PATTERNNET. For example,
help fitnet % Regression and Curvefitting
and
help patternnet % Classification and Pattern Recognition
and similarly with the command DOC
Hope this helps.
Thank you for formally accepting my answer
Greg