我需要确定F
是否存在。如果F
存在,则腰带是“V-belt”,如果不存在,则为“水平腰带”。
这是我的代码
F=input
if F exist
fprint('V belt')
else
fprint('Horizontal belt')
end
基本上,我也不知道我写的是什么。
答案 0 :(得分:0)
只需使用exist
,例如
if exist(F,'var')
foo;
else
bar;
end
好的,由于你的评论,我建议:
F = [];
while isempty(F)
F = input('Enter the value of Fa: ');
end
if F == 0
% ...
else
% ...
end