Create a square matrix with a nested loop
Mostrar comentarios más antiguos
-20 -18 -16 -14
-12 -10 -8 -6
-4 -2 0 2
4 6 10 12
can you create it with a loop inside
3 comentarios
madhan ravi
el 31 de Ag. de 2020
Huh, expecting others to write your homework? Did you try anything at all?
Mehmet ali Karatas
el 31 de Ag. de 2020
madhan ravi
el 31 de Ag. de 2020
Post what you have tried, even if it has mistakes.
Respuestas (2)
A = zeros(4) ;
A(1,:) = -20:2:-14 ;
A(2,:) = -12:2:-6 ;
A(3,:) = -4:2:2 ;
A(4,:) = 4:2:10 ;
1 comentario
Mehmet ali Karatas
el 31 de Ag. de 2020
Clement Val
el 31 de Ag. de 2020
Editada: Clement Val
el 31 de Ag. de 2020
reshape([-20:2:10], 4, 4)'
Just (half) kidding.
You know how to do a loop?
You know how to index in a 2 dim array?
You know how to increment another variable by two?
Categorías
Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!