TSignalStoreBuffer.Shift Method

void Shift(Int32 Offset)

Shift the data left or right by Offset samples.

#NameTypeDescription
1OffsetInt32

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);
    }