MATLAB: After training (nftool) a Neural network using the neural network toolbox, how to test the trained network with new input data that doesn’t have any target values

neural networktesting neural network

I have created a trained network for gas turbine diagnostics using implanted degradation. Now i want to give more inputs inorder to predict the degradation. Im new to this, can anyone please help me.

Best Answer

output = sim(net,input); % = net(input)
If you have no target, the only way to test it is to plot the output and look at it.
Hope this helps.
Thank you for formally accepting my answer
Greg