| VF_mulMT
| VD_mulMT |
VE_mulMT |
|
| Function | multiply a row vector by the transpose of a matrix |
|
| Syntax C/C++ | #include <MFstd.h>
void VF_mulMT( fVector Y, fVector X, fMatrix MA, unsigned htA, unsigned lenA ); |
| C++ MatObj | #include <OptiVec.h>
void vector<T>::mulMT( const vector<T>& X, const matrix<T>& MA ); |
| Pascal/Delphi | uses MFstd;
procedure VF_mulMT( Y, X:fVector; MA:fMatrix; htA, lenA:UInt ); |
|
| Description | Y = X * MAT
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 = lenA, sizY = htA. |
|
|