Create the same number repeatedly in a single array.
70 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Eranja Noopehewa
am 2 Aug. 2018
Beantwortet: Surbhi Pillai
am 2 Aug. 2018
I want to create a matrix of size 1*12 where i have 300 300 300 300 300 300 600 600 600 600 600 600 my array shoul look like X=[300,300,300,300,300,300,600,600,600,600,600,600].. Is there a easy way to create this matrix
0 Kommentare
Akzeptierte Antwort
Surbhi Pillai
am 2 Aug. 2018
Hi Eranja,
I understand you are trying to create a matrix with repeated values. You can try using 'ones' function to create such a matrix.
Following is an example to create a matrix X=[300,300,300,300,300,300,600,600,600,600,600,600]...
X=[300*ones(1,6),600*ones(1,6)];
Hope it helps....
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!