| MF_mulMT
| MD_mulMT |
ME_mulMT |
| MCF_mulMT |
MCD_mulMT |
MCE_mulMT |
|
| Function | multiply one matrix by the transpose of another |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_mulMT( fMatrix MC, fMatrix MA, fMatrix MB, ui htA, ui lenA, ui htB ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::mulMT( const matrix<T>& MA, const matrix<T>& MB ); |
| Pascal/Delphi | uses MFstd;
procedure MF_mulMT( MC, MA, MB:fMatrix; htA, lenA, htB:UIntSize ); |
|
| Description | MC = MA * MBT.
htA, lenA, and htB must be specified; the other dimensions are implicitly given as: lenB = lenA, lenC = htB, htC = htA. |
|
|