| 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 Tr, 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 ); |
|
| 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. |
|
|