TSpectrogram.Rotate Method

void Rotate(Int32 Offset)

Rotate spectrums down or up in the list.

#NameTypeDescription
1OffsetInt32

Result: stored in self (calling object)

Examples
TVec a;
MtxVec.CreateIt(out a);
try
    {
        a.SetIt(false,new double[] {1,2,3,4});
        a.Rotate(2);   // a = new double[] {3,4,1,2}
    }
finally
    {
        MtxVec.FreeIt(ref a);
    }