seq.sum {nem} | R Documentation |
Generates a vector of values. A $i$-th value is calculated as the $i-1$ value, multiplied by $a$.
## S3 method for class 'sum' seq(start, n.out, a)
start |
The initial value. |
n.out |
The number of generated values (length of a generated vector). |
a |
what fraction of the previous value represents the current value. |
A vector.
Marjan Cugmas