Too many output arguments

1 view (last 30 days)
Ditf
Ditf on 28 Dec 2020
Commented: Star Strider on 29 Dec 2020
hi, i newbie to matlab i am creating a very simple feed forward network, but i keep getting the too many output arguments error. what can i do?

Accepted Answer

Star Strider
Star Strider on 28 Dec 2020
Without knowing what ‘dataset’ is, although assuming that it is an array with 2 columns, try this:
Input = dataset(:,1);
Target = dataset(:,2);
Note that the dataset class is a collection of functions for constructing Dataset Arrays.
  10 Comments
Ditf
Ditf on 29 Dec 2020
Thank you so much for your help, i greatly appreciate it.
Star Strider
Star Strider on 29 Dec 2020
As always, my pleasure!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!