MATLAB - if...end 语句


if ... end语句由一个if语句和一个布尔表达式后跟一个或多个语句组成。它由结束语句分隔。

句法

MATLAB 中 if 语句的语法为 -

if <expression>
   % statement(s) will execute if the boolean expression is true 
   <statements>
end

如果表达式的计算结果为 true,则 if 语句内的代码块将被执行。如果表达式的计算结果为 false,则将执行 end 语句之后的第一组代码。

流程图

MATLAB 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
matlab_decisions.htm