Matlab if 2 functions exist

9 visualizzazioni (ultimi 30 giorni)
Duncan
Duncan il 28 Gen 2012
Hi, I am trying to figure out how to write for a code to display if only 2 variables are defined, but it seems to only work for one at a time? How can I get this to work?
  1 Commento
Jan
Jan il 28 Gen 2012
The question is not clear enough to be answered.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 28 Gen 2012
if exist('Var1', 'var') && exist('Var2', 'var')
display('Monday, Monday')
end
There is no way to pass two variable names to exist() to test both at the same time.

Categorie

Scopri di più su Variables in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by