Matlab if 2 functions exist
조회 수: 11 (최근 30일)
이전 댓글 표시
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개)
Walter Roberson
2012년 1월 28일
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.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!