扫码一下
查看教程更方便
一个 if ... end 语句由一个 if 语句和一个布尔表达式组成,后跟一个或多个语句。 它由结束语句分隔。
MATLAB 中 if 语句的语法是
if <expression>
% statement(s) will execute if the boolean expression is true
<statements>
end
如果表达式的计算结果为真,则将执行 if 语句中的代码块。 如果表达式的计算结果为假,则将执行结束语句之后的第一组代码。
创建脚本文件并输入以下代码
a = 10;
% check the condition using if statement
if a < 20
% if condition is true then print the following
fprintf('a is less than 20\n' );
end
fprintf('value of a is : %d\n', a);
当我们运行该文件时,它会显示以下结果
a is less than 20
value of a is : 10