Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
Nikola
Nikola le 12 Mar 2015
Réponse apportée : Nikola le 12 Mar 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?

Réponse acceptée

Julia
Julia le 12 Mar 2015
Hi,
include the return command to stop your program.

Plus de réponses (2)

Guillaume
Guillaume le 12 Mar 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 le 12 Mar 2015
OK, error command do what I need. Thanks

Catégories

En savoir plus sur Argument Definitions dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by