command to stop program if there is no enough input parameters?

3 visualizaciones (últimos 30 días)
Nikola
Nikola el 12 de Mzo. de 2015
Respondida: Nikola el 12 de Mzo. de 2015
I made some function file that plot x versus y with extrema max min etc... I need to find command that will stop program if there is not enough input parameters. First input paremeter is "x" and second "y", and there is few more input parameters but they arent important now.
if nargin <2 || isempty(x0)
disp('Must enter two input parameters for plot.')
end
Program will display message, but what I have to do to make program stop if there arent at least 2 input parameters?

Respuesta aceptada

Julia
Julia el 12 de Mzo. de 2015
Hi,
include the return command to stop your program.

Más respuestas (2)

Guillaume
Guillaume el 12 de Mzo. de 2015
The normal way to stop a program when a precondition is not met is to issue an error. Not only does it stop the program, it also displays the message in red.
if nargin < 2 || isempty(x0)
error('Must enter two input parameters for plot.');
end
Note that there are a number of functions in matlab that can help you validate your preconditions and throw an error when these are not met, for example validateattributes, validatestring, narginchk and nargoutchk. In your particular case
narginchk(2, 2);
validateattributes(x0, {'numeric'}, {'nonempty'});

Nikola
Nikola el 12 de Mzo. de 2015
OK, error command do what I need. Thanks

Categorías

Más información sobre Argument Definitions en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by