MF_Rows_exchange
| MD_Rows_exchange |
ME_Rows_exchange |
MCF_Rows_exchange |
MCD_Rows_exchange |
MCE_Rows_exchange |
MI_Rows_exchange | MBI_Rows_exchange | MSI_Rows_exchange | MLI_Rows_exchange | MQI_Rows_exchange |
MU_Rows_exchange | MUB_Rows_exchange | MUS_Rows_exchange | MUL_Rows_exchange | MUQ_Rows_exchange |
|
Function | exchange two rows |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_exchange( fMatrix MA, ui ht, ui len, unsigned i1, unsigned i2 ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::Rows_exchange( const unsigned i1, const unsigned i2 ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_exchange( MA:fMatrix; ht, len, i1, i2:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_exchange( fMatrix d_MA, ui ht, ui len, unsigned i1, unsigned i2 );
void MFcu_Rows_exchange( fMatrix MA, ui ht, ui len, unsigned i1, unsigned i2 ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_Rows_exchange( d_MA:fMatrix; ht, len, i1, i2:UIntSize ): IntBool;
procedure MFcu_Rows_exchange( h_MA:fMatrix; ht, len, i1, i2:UIntSize );
|
|
Description | The elements of the rows i1 and i2 are exchanged. |
|
|