DataLab is a compact statistics package aiming at exploratory data analysis. Please visit the DataLab Web site for more information....


FillSerial

Declaration:TVector.FillSerial (Offset, Diff: double);
The method FillSerial fills a vector with an arithmetic series, starting with the value Offset, and incrementing the subsequent values by adding the constant Diff.

For example the statement Vec.FillSerial (20, -0.5); fills the vector Vec with the series 20.0, 19.5, 19.0, 18.5, 18.0, ....