How to Create/Modify for matrices or matrix
Mostrar comentarios más antiguos
K=5
matA= [1 2 ..4 K]
matB=[matA matA matA matA matA]
matB=[1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5]
How to operate this equation matB?
Respuesta aceptada
Más respuestas (1)
Les Beckham
el 12 de Abr. de 2022
Editada: Les Beckham
el 12 de Abr. de 2022
K=5;
matA = 1:K
matB = repmat(matA, 1, K)
Categorías
Más información sobre Simulation, Tuning, and Visualization 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!