make a vector from one value

76 views (last 30 days)
Lev Mihailov
Lev Mihailov on 21 Jul 2020
Edited: Bruno Luong on 21 Jul 2020
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 ...]

Accepted Answer

Bruno Luong
Bruno Luong on 21 Jul 2020
Edited: Bruno Luong on 21 Jul 2020
One way (among many)
x = 0.421 + zeros(1,1200)

More Answers (0)

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!