MF_rotate270
| MD_rotate270 |
ME_rotate270 |
MCF_rotate270 |
MCD_rotate270 |
MCE_rotate270 |
MI_rotate270 | MBI_rotate270 | MSI_rotate270 | MLI_rotate270 | MQI_rotate270 |
MU_rotate270 | MUB_rotate270 | MUS_rotate270 | MUL_rotate270 | MUQ_rotate270 |
|
Function | clock-wise rotation of a matrix by 270° (or counter-clockwise rotation by 90°) |
|
Syntax C/C++ | #include <MFstd.h>
void MF_rotate270( fMatrix MRot, fMatrix MA, ui htRot, ui lenRot ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::rotate270( const matrix<T>& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_rotate270( MRot, MA:fMatrix; htRot, lenRot:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_rotate270( fMatrix d_MRot, fMatrix d_MA, ui htRot, ui lenRot );
void MFcu_rotate270( fMatrix h_MRot, fMatrix h_MA, ui htRot, ui lenRot );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_rotate270( d_MRot, MA:fMatrix; htRot, lenRot:UIntSize ): IntBool;
procedure MFcu_rotate270( h_MRot, h_MA:fMatrix; htRot, lenRot:UIntSize );
|
|
Description | MRoti,j = MAj, htRot-i-1
The dimensions fed into this function, htRot and lenRot, refer to the rotated matrix rather than to the input matrix. |
|
|