make a vector from one value
75 views (last 30 days)
Show older comments
hello! I have values 0.421, I need to make a vector of 1200 values of the same from it without a loop
% I need to do without a loop x=[0.421 0.421 0.421 0.421 ...]
0 Comments
Accepted Answer
Bruno Luong
on 21 Jul 2020
Edited: Bruno Luong
on 21 Jul 2020
One way (among many)
x = 0.421 + zeros(1,1200)
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!