repeat a matrix in defined manner
Ältere Kommentare anzeigen
hi! How could i generate from this matrix:
A=[1 2 3
4 5 6
4 5 6]
this matrix:
B= [1 1 1 1 2 2 2 2 3 3 3 3
4 4 4 4 5 5 5 5 6 6 6 6
4 4 4 4 5 5 5 5 6 6 6 6]
thank you
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 12 Dez. 2012
Bearbeitet: Walter Roberson
am 12 Dez. 2012
kron(A,[1 1 1 1])
or
A(:, repmat(1:end,4,1) )
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!