How can I make a vector of a repeating sequence
Show older comments
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?
Accepted Answer
More Answers (1)
David Fletcher
on 21 Mar 2018
Edited: David Fletcher
on 21 Mar 2018
repmat([0 0 0 1],1,40)
1 Comment
Jan
on 22 Mar 2018
This is much more efficient than a loop.
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!