How can I make a vector of a repeating sequence
36 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Anouk Heuvelmans
am 21 Mär. 2018
Kommentiert: Jan
am 22 Mär. 2018
I want to make a vector with 40 repeats of [0 0 0 1] in a column so it would look like this: 0 0 0 1 0 0 0 1 (0 0 0 1)x40
How would I be able to make this?
0 Kommentare
Akzeptierte Antwort
Amjad Green
am 21 Mär. 2018
x=[0 0 0 1];n=length(x);k=1;j=1; for i=1:40 while j<=n y(k)=x(j); k=k+1; j=j+1; end j=1; end
Weitere Antworten (1)
David Fletcher
am 21 Mär. 2018
Bearbeitet: David Fletcher
am 21 Mär. 2018
repmat([0 0 0 1],1,40)
1 Kommentar
Siehe auch
Kategorien
Mehr zu Elementary Math 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!