"Error using perceptron Too many output arguments. "

1 view (last 30 days)
I have this simple code copied from matlab:
P = [0 2];
T = [0 1];
net = perceptron;
net = configure(net,P,T);
However, I get the following error:
Error using perceptron
Too many output arguments.
Any help will be highly appreciated..
  1 Comment
Dana
Dana on 18 Sep 2020
Which line throws the error? net = perceptron; or net = configure(net,P,T);?

Sign in to comment.

Answers (1)

Prasanth
Prasanth on 21 Sep 2020
I am assuming that you are using MATLAB R2019a. Try running the following script on MATLAB command window:
>> which perceptron
This command determines which function script is being called along with the path of the file. You should get the following output. Here, matlabroot is the location where MATLAB is installed.
matlabroot\toolbox\nnet\nnet\nnnetwork\perceptron.m
If your output is different from the above, it means that there are file(s) named 'perceptron.m' on your path which is/are overriding the inbuilt function. Try renaming/removing those file(s) and run the code again. This should run fine.
Refer to the following documentation link to get insights on how MATLAB determines the function precedence order.
Hope this helps.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!