MATLAB if… end语句
if … end语句由一个if语句和一个布尔表达式,后面跟着一个或多个语句组成。它由end语句限定。
语法
在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