Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *RadToDeg(); | RadToDeg converts radians to degrees. |
| 2 | TMtxVec *RadToDeg(int Index, int Len); | RadToDeg converts the radians for calling object elements [Index]..[Index+Len-1] in-place to degrees. |
| 3 | TMtxVec *RadToDeg(TMtxVec *X); | RadToDeg converts the radians to degrees for all X object elements. |
| 4 | TMtxVec *RadToDeg(TMtxVec *X, int XIndex, int Index, int Len); | RadToDeg converts degrees to radians for all X object elements [XIndex]..[XIndex+Len-1]. |
Overload 1: TMtxVec *RadToDeg();
RadToDeg converts radians to degrees.
Returns: RadToDeg converts radians to degrees for all calling object elements in-place. The following transformation is used: Degrees = Radians/(PI*180)
Overload 2: TMtxVec *RadToDeg(int Index, int Len);
RadToDeg converts the radians for calling object elements [Index]..[Index+Len-1] in-place to degrees.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
An exception is raised, if array borders are overrun or underrun.
Overload 3: TMtxVec *RadToDeg(TMtxVec *X);
RadToDeg converts the radians to degrees for all X object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * |
Stores the results in the calling object. Size and TSparseMtx::Complex properties of calling object are adjusted automatically.
Overload 4: TMtxVec *RadToDeg(TMtxVec *X, int XIndex, int Index, int Len);
RadToDeg converts degrees to radians for all X object elements [XIndex]..[XIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec * | |
| 2 | XIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Stores the results in the calling object elements [Index]..[Index+Len-1]. An exception is raised, if array borders are overrun or underrun.