Creating a matrix by some other matrices
Ältere Kommentare anzeigen
Suppos I have:
a = [3;3;5;8;2;1;8;1;5];
b = 2
I want matrix c to be:
c = [3 2;3 2;5 2;8 2;2 2;1 2;8 2;1 2;5 2]
second column of matrix c is just repeated b
Akzeptierte Antwort
Weitere Antworten (2)
Azzi Abdelmalek
am 12 Mai 2014
Bearbeitet: Azzi Abdelmalek
am 12 Mai 2014
[a 2*ones(size(a))]
1 Kommentar
Moe
am 12 Mai 2014
Kategorien
Mehr zu Resizing and Reshaping 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!