Matlab function equivalent to seqa()
古いコメントを表示
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.
採用された回答
その他の回答 (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;
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!