Matlab function equivalent to seqa()
Ältere Kommentare anzeigen
Is there a Matlab function equivalent to seqa()
1 Kommentar
John D'Errico
am 8 Feb. 2019
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.
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 8 Feb. 2019
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;
1 Kommentar
Adrian Austin
am 9 Feb. 2019
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!