Matlab Error: Too many output arguments

Posted by lebland_Matlab on Stack Overflow See other posts from Stack Overflow or by lebland_Matlab
Published on 2010-04-08T22:20:59Z Indexed on 2010/04/08 22:23 UTC
Read the original article Hit count: 645

Filed under:
|

I use the following function in a Matlab program:

...
...
...
[A, B, C, D, E] = function (F, G, H, I, J, K, L, M, N, O, P)
...
...
...
and I get the following error message:

??? Error using ==> function
Too many output arguments.

A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P are the vectors of inputs and outputs of the function.

but the same program works very well when I replaced the line of the function by its full script!
Can you tell me where I should look to find the error..

© Stack Overflow or respective owner

Related posts about matlab

Related posts about error-message