reiterating 1s and 0s in a single column

2 次查看(过去 30 天)
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!

采纳的回答

Voss
Voss 2022-1-29
Use repmat():
A = [0;1;1;1;1;0;1;1];
x = 4;
B = repmat(A,x,1);
disp(B);
0 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1 0 1 1 1 1 0 1 1

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by