| MCF_mulM |
MCD_mulM |
MCE_mulM |
|
| Function | matrix multiplication |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_mulM( fMatrix MC, fMatrix MA, fMatrix MB, unsigned htA, unsigned lenA, unsigned lenB ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::mulM( const matrix<T>& MA, const matrix<T>& MB ); |
| Pascal/Delphi | uses MFstd;
procedure MF_mulM( MC, MA, MB:fMatrix; htA, lenA, lenB:UInt ); |
|
| Description | MC = MA * MB
htA, lenA, and lenB must be specified; the other dimensions are implicitly given as: htB = lenA, lenC = lenB, htC = htA. |
|
|