MATLAB: Output value in a Neuraql Network

Deep Learning Toolboxneural network

After saving results of a Network with an input of 300×2 matrix and output of 300×7 matrix, How can one get an output of 7 values column giving two inputs values?

Best Answer

output = net(input);
Thank you for formally accepting my answer
Greg