void Rotate(Int32 Offset)
Rotate spectrums down or up in the list.
| # | 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,4});
a.Rotate(2); // a = new double[] {3,4,1,2}
}
finally
{
MtxVec.FreeIt(ref a);
}