MATLAB if...elseif...elseif...else...end 語(yǔ)句

2018-08-11 11:30 更新

MATLAB 的 if...elseif...elseif...else...end 語(yǔ)句中 if 語(yǔ)句可以跟隨一個(gè)(或多個(gè))可選的 elseif... else 語(yǔ)句,這是非常有用的,可以用來(lái)對(duì)各種條件進(jìn)行測(cè)試。

使用 if... elseif...elseif...else 語(yǔ)句,要注意以下幾點(diǎn):

  • 一個(gè) if 可以有零個(gè)或多個(gè) else,但是它必須跟在 elseif 后面(即只有 elseif 存在才會(huì)有 else)。 

  • 一個(gè) if 可以有零個(gè)或多個(gè) elseif ,必須出現(xiàn)else。

  • 一旦 elseif 匹配成功,余下的 elseif 將不會(huì)被測(cè)試。

 if... elseif...else...end 語(yǔ)法:
if <expression 1>
% Executes when the expression 1 is true 
<statement(s)>
elseif <expression 2>
% Executes when the boolean expression 2 is true
<statement(s)>
Elseif <expression 3>
% Executes when the boolean expression 3 is true 
<statement(s)>
else 
%  executes when the none of the above condition is true 
<statement(s)>
end

詳細(xì)例子如下:

在MATLAB中建立一個(gè)腳本文件,并輸入下述代碼:

a = 100;
%check the boolean condition 
   if a == 10 
         % if condition is true then print the following 
       fprintf('Value of a is 10
' );
    elseif( a == 20 )
       % if else if condition is true 
       fprintf('Value of a is 20
' );
    elseif a == 30 
        % if else if condition is true  
       fprintf('Value of a is 30
' );
   else
        % if none of the conditions is true '
       fprintf('None of the values are matching
');
   fprintf('Exact value of a is: %d
', a );
   end

編譯和執(zhí)行上述代碼,產(chǎn)生如下結(jié)果:

None of the values are matching
Exact value of a is: 100


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)