Matlab function equivalent to seqa()
5 次查看(过去 30 天)
显示 更早的评论
Is there a Matlab function equivalent to seqa()
1 个评论
John D'Errico
2019-2-8
seqa?
If you want help, you need to give people a clue what it does. Yes, maybe you know what jargon or acronym this refers to, but others may not.
采纳的回答
Star Strider
2019-2-8
If you are talking about this:
x = seqa(start, step, count);creates a sequence of 'count' numbers starting at 'start' and increasing by 'step'.
2 个评论
Walter Roberson
2019-2-8
Note that colon is colon(start, step, stop) not (start, step, count) . The stop point might not be included in the list for colon: for example 1:2:3.141 will include 1 and 3, but will not include 3.141 in the list.
There is also linspace, which is linspace(start, stop, count). The stop point is always included in the list unless count is less than 1; the start point is always included in the list unless count is less than 2 (so if the count is one, the stop will be included by the start will not be.)
更多回答(1 个)
Walter Roberson
2019-2-8
Taking the hint from your gauss tag to find https://www.aptech.com/resources/gauss-quick-reference/
seqa = @(start, step, count) start + (0:count-1)*step;
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!