MATLAB if… end语句

MATLAB if… end语句

if … end语句由一个if语句和一个布尔表达式,后面跟着一个或多个语句组成。它由end语句限定。

语法

在MATLAB中,if语句的语法是−

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

如果表达式评估为真,则将执行if语句内的代码块。如果表达式评估为假,则将执行结束语句后的第一组代码。

流程图

MATLAB if... end语句

示例

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

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程