本文概述
- 句法
- if … else … end语句的流程图
- 例1
- 例2
句法
if expressionStatementselseStatementsend
if … else … end语句的流程图
文章图片
例1
% program to check the number is even or odda = randi(100, 1);
if rem(a, 2) == 0disp('an even number')elsedisp('an odd number')end
【MATLAB if-else… end语句】输出
a = 15an odd number
例2 使用if-else语句确定两个数中的最大值
num1 = input('Enter number 1: ');
num2 = input('Enter number 2: ');
if (num1 >
num2) disp('num1 is greater than num2') else if (num1 <
num2) disp('num1 is less than num2') else if (num1 == num2) disp('num1 is equal to num2') end
输出
Enter number 1: 15Enter number 2:20num1 is less than num2
推荐阅读
- MATLAB if…end语句
- MATLAB格式化文字
- MATLAB运算符
- MATLAB数据类型
- MATLAB使用变量和数组
- MATLAB环境配置详解
- 如何下载MATLAB()
- MATLAB命令使用介绍
- MATLAB在线版本使用介绍