procedure Shift(Offset: Integer);
Shift the data left or right by Offset samples.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Offset | Integer |
Result: stored in self (calling object)
Examples
var a: TVec;
begin
CreateIt(a);
try
a.SetIt(False,[1,-2,3,0]);
a.Shift(1); // a = 1,1,-2,3
finally
FreeIt(a);
end;
end;