| MF_TmulM
| MD_TmulM |
ME_TmulM |
| MCF_TmulM |
MCD_TmulM |
MCE_TmulM |
|
| Function | multiply the transpose of one matrix by another matrix |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_TmulM( fMatrix MC, fMatrix MA, fMatrix MB, unsigned htA, unsigned lenA, unsigned lenB ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::TmulM( const matrix<T>& MA, const matrix<T>& MB ); |
| Pascal/Delphi | uses MFstd;
procedure MF_TmulM( MC, MA, MB:fMatrix; htA, lenA, lenB:UInt ); |
|
| Description | MC = MAT * MB
htA, lenA, and lenB must be specified; the other dimensions are implicitly given as: htB = htA, lenC = lenB, htC = lenA. htA and lenA refer to the original, un-transposed input matrix. |
|
|