MATLAB: What is the MATLAB code to generate two outputs using neural networks

neural_networks

I'm modelling some data using neural network, so i need to get two outputs. How do i go about it?

Best Answer

To get N "O"utput vector dimensions of O corresponding to N "I"nput vector dimensions of I, the sizes of the input and target matrices should be
[ I N ] = size(input)
[O N ] = size(target)
Hope this helps.
Thank you for formally accepting my answer
Greg