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 ); |
|
CUDA function C/C++ | #include <cudaMFstd.h>
int cudaMF_mulMT( fMatrix d_MC, fMatrix d_MA, fMatrix d_MB, ui htA, ui lenA, ui htB );
void MFcu_mulMT( fMatrix h_MC, fMatrix h_MA, fMatrix h_MB, ui htA, ui lenA, ui htB );
|
CUDA function Pascal/Delphi | uses MFstd;
function cudaMF_mulMT( d_MC, d_MA, d_MB:fMatrix; htA, lenA, htB:UIntSize ): IntBool;
procedure MFcu_mulMT( h_MC, h_MA, h_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. |
|
|