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


CopyFrom (Vector)

Declaration:TVector.CopyFrom (Src: TVector; SrcElemLo, SrcElemHi, DestElem: integer);
The method CopyFrom copies a part of the vector Src to self.The range of elements which are to be copied is specified by the parameters SrcElemLo and SrcElemHi. The destination area is determined by the parameter DestElem. The source vector element addressed by SrcElemLo is copied to the destination element addressed by DestElem. All other elements (up to source vector address SrcElemHi) are copied to the destination vector at increasing addresses. The copying process stops at the boundaries of the destination vector.

Hint: SrcElemLo needs not be smaller than SrcElemHi, since the method CopyFrom automatically corrects for exchanged boundaries.