You are here: Symbol Reference > MtxExpr Namespace > Classes > Vector Record > public > Ramp Method > Vector.Ramp Method ()
MtxVec VCL
ContentsIndex
PreviousUpNext
Vector.Ramp Method ()

Fills the calling vector with a series following linear rule.

Pascal
function Ramp: TVec; overload;

Fills the calling vector with a series following the rule: 

 

Values[k] := k

 

(Offset is zero and Step is one). If the calling vector is complex, only the real part is set.

var a: Vector; begin a.Size(5,True); a.Ramp(0,PI); a.Sin; end;

which is identical to:

a.Size(5,True); for i:= 0 to a.Length-1 do a[i] := sin(i*PI);
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!