reiterating 1s and 0s in a single column
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Michael Angeles
am 29 Jan. 2022
Beantwortet: Voss
am 29 Jan. 2022
Hello how do I make my data repeat x amount of times in the same column by copying the original sequence of data?
example data:
Column A has binary data [0;1;1;1;1;0;1;1]
Thank you!
0 Kommentare
Akzeptierte Antwort
Voss
am 29 Jan. 2022
Use repmat():
A = [0;1;1;1;1;0;1;1];
x = 4;
B = repmat(A,x,1);
disp(B);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numeric Types 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!