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!