Tagged Questions

3
votes
1answer
2k views

Using nntool [MATLAB] from command line

I have this code: in = [5 columns of data-points]; out = [1 column of data-points]; net = newfit(in,out,5); net = train(net,in,out); now I want to access the error variable that is generated (so ...
2
votes
1answer
1k views

How to format data for use in nntool (MATLAB)?

In nntool, the sample data is formatted as: [0 1 -1; 2 3 1] I have ~8000 data points in a text file. How do I format those points for use here? What does the semicolon signify?
1
vote
1answer
94 views

Can't get neural network result in MATLAB

I guess my question is very simple, but anyway... I've created neural network using net = newff(entry_borders, [20, 10], {'logsig', 'logsig'}, 'traingdx'); where entry_borders is an array 50x2: ...
0
votes
1answer
275 views

Dimension error in target matrix of NNtool matlab

I am exploring matlab's neural network toolbox (nntool) and i am running into a problem of having incompatible dimensions of target matrix. Exact error message is com.mathworks.jmi.MatlabException: ...