Matrix Fill with same number sequence
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
TheDice
el 20 de Abr. de 2021
Comentada: Walter Roberson
el 20 de Abr. de 2021
How can I fill a matrix with the same sequence of numbers?
I want a matrix in which the first row contains 20 and 30. this should then also be in the next five rows.
0 comentarios
Respuesta aceptada
Walter Roberson
el 20 de Abr. de 2021
YourMatrix(1:6,1:2:end) = 20;
YourMatrix(1:6,2:2:end) = 30;
Más respuestas (1)
Ver también
Categorías
Más información sobre Matrices and Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!