void Shift(Int32 Offset)
Shift the data left or right by Offset samples.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Offset | Int32 |
Result: stored in self (calling object)
Examples
TVec a;
MtxVec.CreateIt(out a);
try
{
a.SetIt(false,new double[] {1,-2,3,0});
a.Shift(1); // a = 1,1,-2,3
}
finally
{
MtxVec.FreeIt(ref a);
}