Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

How do you do these problems by hand?

1 visualización (últimos 30 días)
Mohamed Amine Mouajib
Mohamed Amine Mouajib el 13 de Mayo de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
So I'm supposed to do these by hand and only print the answer on Matlab. This is a homework we were assigned a long time ago but I never did it nor has the solution been posted for it. I have a test tomorrow and I really would like to know how to do them by hand.
1)
x = 10;
if round(x/5) == x/5 x = 2 * x + 4;
elseif x == 10 x = 4 * x;
else x = 0;
end
---------------------
2)
x = 10;
if round(x/3) == x/3 x = 2 * x + 4;
elseif x == 10 x = 4 * x;
else x = 0;
end
-------------------------
3)
x = 9;
if round(x/4) == x/4 x = 2 * x + 4;
elseif x == 4 x = 4 * x;
else x = 0;
end
  1 comentario
Walter Roberson
Walter Roberson el 13 de Mayo de 2019
You use your knowledge of MATLAB operations.
What does / do? What does round() do? What does == do?
In the circumstance that you have a chain
if condition1; result1;
elseif condition2; result2;
else result3;
end
then if condition1 and condition2 and "else" are all true, then what would the outcome be?

Respuestas (0)

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by