MF_transpose
| MD_transpose |
ME_transpose |
MCF_transpose |
MCD_transpose |
MCE_transpose |
MI_transpose | MBI_transpose | MSI_transpose | MLI_transpose | MQI_transpose |
MU_transpose | MUB_transpose | MUS_transpose | MUL_transpose | MUQ_transpose |
|
Function | transpose of a matrix |
|
Syntax C/C++ | #include <MFstd.h>
void MF_transpose( fMatrix MTr, fMatrix MA, ui htTr, ui lenTr ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::transpose( const matrix<T>& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_transpose( MTr, MA:fMatrix; htTr, lenTr:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_transpose( fMatrix d_MTr, fMatrix d_MA, ui htTr, ui lenTr );
void MFcu_transpose( fMatrix h_MTr, fMatrix h_MA, ui htTr, ui lenTr ); |
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_transpose( d_MTr, d_MA:fMatrix; htTr, lenTr:UIntSize ): IntBool;
procedure MFcu_transpose( h_MTr, h_MA:fMatrix; htTr, lenTr:UIntSize );
|
|
Description | MTri,j = MAj,i
The dimensions fed into this function, htTr and lenTr, refer to the transposed matrix rather than to the input matrix. |
|
|