MATLAB: How can i enter more than one input in neural network?

Deep Learning Toolboxneural networks

how can i enter more than one input matrix in neural network??
i want to train my network to select the target for more than one input ??

Best Answer

Use a two dimensional column vector input with dim 1 service values and dim 2 quality values the target is a 1 dimensional scalar with the corresponding BW value.For N cases
[ 2 N ] = size(input)
[ 1 N ] = size(target)
Hope this helps.
Thank you for formally accepting my answer.
Greg