help me loop i cant understand it

15 visualizaciones (últimos 30 días)
George Georgy
George Georgy el 30 de Mzo. de 2018
Respondida: M el 30 de Mzo. de 2018
for q1 = [1 2 -1;3 0 2] for q2 = [2 1] a = q2*q1; fprintf('the sum of a =%4.2f\n',sum(a)) end end

Respuestas (1)

M
M el 30 de Mzo. de 2018
Try this to see if it is gets clear to you:
for q1 = [1 2 -1;3 0 2]
for q2 = [2 1]
a = q2*q1;
fprintf('the sum of (%d %d) and %d is a =%4.2f\n',q1,q2,sum(a))
end
end

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by