vector with spacing (predefined)
4 views (last 30 days)
Show older comments
Venkata Brahma Teja Haridasu
on 18 Apr 2021
Edited: Venkata Brahma Teja Haridasu
on 18 Apr 2021
0 Comments
Accepted Answer
David Fletcher
on 18 Apr 2021
Maybe I am missing something, but this?
initial_value=-25;
step_size=5;
final_value=15;
vector=initial_value:step_size:final_value
0 Comments
More Answers (1)
the cyclist
on 18 Apr 2021
Does
v = -25:5:15
do what you want? Or maybe you meant
initial_value = -25;
step_size = 5;
final_value = 15;
v = initial_value : step_size : final_value
If neither of those is what you meant, then I don't understand.
1 Comment
See Also
Categories
Find more on Variables 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!