MATLAB Codes to Find Values of given Equations

$29.00$19.00594 reads

Question

For the following, what are the values of A, B, and C after executing the if statement on the right with the given values of A and B?

  • A=6; B=2;
  • A=1;B=4;
  • A=4;B=4;         

C = 0;

if A < B

   C = A+B;

elseif A <= B

    C = A-B;

else

   C = A;

end

 

Summary

This question belongs to MATLAB software and discusses about MATLAB codes and you are asked to find wrong codes and fix it.

Answer is in MATLAB format

 

Add to Cart