Grocer Function
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)
Example gives the matrix:
! 2. !
! 7. !
! 12. !
AUTHOR
Eric Dubois 2002