matlab多重if,MATLAB嵌套if语句MATLAB嵌套 if 语句语法:
详细语法如下:if
% Executes when the boolean expression 1 is true
if
% Executes when the boolean expression 2 is true
end
end
可以嵌套elseif 或其他类似的⽅式,因为已经嵌套if语句。
详细例⼦如下:
在MATLAB中建⽴⼀个脚本⽂件,并输⼊下⾯的代码:a = 100;
b = 200;
% check the boolean condition
if( a == 100 )
% if condition is true then check the following
if( b == 200 )
% if condition is true then print the following
fprintf('Value of a is 100 and b is 200
' );
end
if语句的嵌套例子模板end
fprintf('Exact value of a is : %d
', a );
fprintf('Exact value of b is : %d
', b );
运⾏该⽂件,它显⽰的结果如下:Value of a is 100 and b is 200
Exact value of a is : 100
Exact value of b is : 200

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。