Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
how to sum a 9 matrice in a for loop ?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
i have a 9 matrice (7 8 9;2 1 4; 5 6 3) and i have to write a code in a for loop that gives me the answer to the sum of all 9 numbers
2 comentarios
Erivelton Gualter
el 19 de Nov. de 2019
Do you means, you want the sum of all the values for a given matrix (for example, (7 8 9;2 1 4; 5 6 3)) ?
Respuestas (1)
KALYAN ACHARJYA
el 19 de Nov. de 2019
Editada: KALYAN ACHARJYA
el 19 de Nov. de 2019
"May the question is: how to sum a 9 matrices elements in a for loop?"
No need of loop, here mat is given matrix
result=sum(mat(:))
Must be loop have to use, then,
Hints:
for i=1:r
for j=1:col
sum_mat=sum_mat+mat(i,j);
end
end
2 comentarios
KALYAN ACHARJYA
el 19 de Nov. de 2019
Then Hints are sufficient, I will not tell you more. Please read Matlab documentation.
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!