Error while using Nargin

9 visualizaciones (últimos 30 días)
Kishore adibhatla
Kishore adibhatla el 21 de Mayo de 2012
While using function nargin for a user defined function...matlab posts the follwing error:
'Too many output arguments.' What is the cause for this problem and how to solve this?? Please help me...
  1 comentario
Oleg Komarov
Oleg Komarov el 21 de Mayo de 2012
Post (edit) the entire error message and the line of code that generated the error.

Iniciar sesión para comentar.

Respuestas (1)

Sean de Wolski
Sean de Wolski el 21 de Mayo de 2012
It means you are calling the function with more outputs than are defined in it.
If your function is:
function y = fun(x)
and you call
[z w] = fun(x)
It will throw this error.
  1 comentario
Jan
Jan el 22 de Mayo de 2012
Especially the function "nargin" is called with more than 1 output in the OPs case.

Iniciar sesión para comentar.

Categorías

Más información sobre Function Creation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by