根据变量值打印

时间:2013-04-27 10:14:14

标签: matlab if-statement

我需要确定F是否存在。如果F存在,则腰带是“V-belt”,如果不存在,则为“水平腰带”

这是我的代码

F=input

if F exist
    fprint('V belt')
else
    fprint('Horizontal belt')
end

基本上,我也不知道我写的是什么。

1 个答案:

答案 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