MATLAB - if... end 语句



一个if ... end语句由一个if语句和一个布尔表达式以及一个或多个语句组成。它以end语句作为分隔符。

语法

MATLAB 中 if 语句的语法如下:

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

如果表达式计算结果为真,则将执行 if 语句内的代码块。如果表达式计算结果为假,则将执行 end 语句之后的第一个代码集。

流程图

MATLAB if statement

示例

创建一个脚本文件并输入以下代码:

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
广告