How to create a specific Matrix
Mostrar comentarios más antiguos
Hi !
Can anyone help me in builting this specific matrix? I do not know if the "randi" function is the exact one.
Thank you in advance for your help!

Respuestas (2)
KSSV
el 5 de Mzo. de 2020
c = [1 1 2 2 3 3]' ;
iwant = repmat(l',1,4) ;
Bhaskar R
el 5 de Mzo. de 2020
M = repelem([1:3]', 2, 4)
1 comentario
Sara Trova
el 5 de Mzo. de 2020
Categorías
Más información sobre Creating and Concatenating Matrices 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!