MF_Rows_rev
| MD_Rows_rev |
ME_Rows_rev |
MCF_Rows_rev |
MCD_Rows_rev |
MCE_Rows_rev |
MI_Rows_rev | MBI_Rows_rev | MSI_Rows_rev | MLI_Rows_rev | MQI_Rows_rev |
MU_Rows_rev | MUB_Rows_rev | MUS_Rows_rev | MUL_Rows_rev | MUQ_Rows_rev |
|
Function | Reverse the element ordering along rows. This corresponds to a relection of the matrix at the X axis. |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_rev( fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_rev( ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_rev( MA:fMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_rev( fMatrix d_MA, ui ht, ui len );
void MFcu_Rows_rev( fMatrix h_MA, ui ht, ui len );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_rev( d_MA:fMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_rev( h_MA:fMatrix; ht, len:UIntSize );
|
|
Description | MAi, j = MAi, len-j-1 |
|
|