Name
seqa — production of a sequence of values
CALLING SEQUENCE
[seq]=seqa(a,b,c)
PARAMETERS
- Input
a = initial value in sequence
b = increment
c = number of values in the sequence
- Output
a sequence, (a:b:(a+b*(c-1)))' in scilab notation
DESCRIPTION
Produces a sequence of values (a Gauss compatibility function).
EXAMPLE
seqa(2,5,3)
//returns
//! 2. !
//! 7. !
//! 12. !