在 MATLAB 中嵌套 if-else 語句總是合法的,這意味著您可以在另一個 if 或 elseif 語句中使用 if 或 elseif 語句。
嵌套if語句的語法如下-
if <expression 1> %當布爾表達式1為true時執(zhí)行 if <expression 2> %當布爾表達式2為true時執(zhí)行 end end
您可以嵌套elseif ... else,就像嵌套if語句一樣。
創(chuàng)建一個腳本文件并在其中鍵入以下代碼-
a = 100; b = 200; %檢查布爾條件 if( a == 100 ) %如果condition為真,則檢查以下內容 if( b == 200 ) %如果condition為真,則打印以下內容 fprintf('Value of a is 100 and b is 200\n' ); end end fprintf('Exact value of a is : %d\n', a ); fprintf('Exact value of b is : %d\n', b );運行文件時,它顯示-
Value of a is 100 and b is 200 Exact value of a is : 100 Exact value of b is : 200