MATLAB: How do i collect data for neural networks

Deep Learning Toolboxneural networknonlinear

how to collect data's for neural network training

Best Answer

N examples of an I-dimensional input and the corresponding O-dimensional target output:
[ I N ] = size(input)
[ O N ] = size(target)
Hope this helps.
Thank you for formally accepting my answer
Greg