If Else In Matlab

[Solved] If Else In Matlab | Matlab - Code Explorer | yomemimo.com
Question : if else in matlab

Answered by : rasel-ahmed-9kilyai1mdfd

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

Source : | Last Update : Mon, 27 Jun 22

Answers related to if else in matlab

Code Explorer Popular Question For Matlab