| MF_TmulV
| MD_TmulV |
ME_TmulV |
| MCF_TmulV |
MCD_TmulV |
MCE_TmulV |
|
| Function | multiply the transpose of a matrix by a column vector |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_TmulV( fVector Y, fMatrix MA, fVector X, unsigned htA, unsigned lenA ); |
| C++ MatObj | #include <OptiVec.h>
void vector<T>::TmulV( const matrix<T>& MA, const vector<T>& X ); |
| Pascal/Delphi | uses MFstd;
procedure MF_TmulV( Y:fVector; MA:fMatrix; X:fVector; htA, lenA:UInt ); |
|
| Description | Y = MAT * X
The dimensions htA and lenA refer to the original (rather than the intermediate transposed) matrix MA; the dimensions of X and Y are implicitly given by the matrix dimensions: sizX = htA, sizY = lenA. |
|
|