| MCF_mulV |
MCD_mulV |
MCE_mulV |
|
| Function | multiply a matrix by a column vector |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_mulV( fVector Y, fMatrix MA, fVector X, unsigned htA, unsigned lenA ); |
| C++ MatObj | #include <OptiVec.h>
void vector<T>::mulV( const matrix<T>& MA, const vector<T>& X ); |
| Pascal/Delphi | uses MFstd;
procedure MF_mulV( Y:fVector; MA:fMatrix; X:fVector; htA, lenA:UInt ); |
|
| Description | Y = MA * X
the dimensions of X and Y are implicitly given by the matrix dimensions: sizX = lenA, sizY = htA.
|
|
|