-sequence=begin=<value>[,number=<integer>][,end=<value>]
[,delta=<value>][,interval=<integer>]
-- Defines the arithmetic sequence for the data column.
More that one sequence option can be given for a
column definition, thus allowing arithmetic sequences of different character in one column.
The begin value must be given in the first sequence option.
If any sequence options follows immediately, a default value
equal to the previous end value plus the previous delta value is used.
For the rest of the suboptions, the user must supply
(end, delta), (end, number), or (delta, number).
If number isn't supplied, then the set of start, end, delta
must imply a positive number of rows.
The interval field specifies the number of rows for which the value is frozen
within the sequence. For instance,
sddssequence example.sdds -def=Index,type=long -sequ=beg=1,num=10,end=10,inte=2
sddsprintout -col=Index example.sdds
produces
Printout for SDDS file example.sdds
Index
------------
1
1
3
3
5
5
7
7
9
9