How can I create array of numbers +5 the previous number?
3 次查看(过去 30 天)
显示 更早的评论
I want to create an array like this
1 5 10 15 etc.
I want to create an array doing +5 the previous number
How can I do it?
1 个评论
回答(1 个)
Sindar
2020-2-21
start_num = 1;
end_num = 15;
x=[start_num:5:end_num];
% note that 15 is not included since 1+5+5+5=16
If you actually want the example you gave:
end_num = 15;
x = [1 5:5:end_num];
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multidimensional Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!