MF_TmulMT MD_TmulMT ME_TmulMT
MCF_TmulMT MCD_TmulMT MCE_TmulMT
Functionmultiply the transpose of one matrix by the transpose of another
Syntax C/C++#include <MFstd.h>
void MF_TmulMT( fMatrix MC, fMatrix MA, fMatrix MB, ui htA, ui lenA, ui htB );
C++ MatObj#include <OptiVec.h>
void matrix<T>::TmulMT( const matrix<T>& MA, const matrix<T>& MB );
Pascal/Delphiuses MFstd;
procedure MF_TmulMT( MC, MA, MB:fMatrix; htA, lenA, htB:UIntSize );
CUDA function C/C++#include <cudaMFstd.h>
int cudaMF_TmulMT( fMatrix d_MC, fMatrix d_MA, fMatrix d_MB, ui htA, ui lenA, ui htB );
void MFcu_TmulMT( fMatrix h_MC, fMatrix h_MA, fMatrix h_MB, ui htA, ui lenA, ui htB );
CUDA function Pascal/Delphiuses MFstd;
function cudaMF_TmulMT( d_MC, d_MA, d_MB:fMatrix; htA, lenA, htB:UIntSize ): IntBool;
procedure MFcu_TmulMT( h_MC, h_MA, h_MB:fMatrix; htA, lenA, htB:UIntSize );
DescriptionMC = MAT * MBT
htA, lenA, and htB must be specified; the other dimensions are implicitly given as: lenB = htA, lenC = htB, htC = lenA. All dimensions refer to the original, un-transposed input matrices.
See alsoMF_mulM,   MF_TmulM,   MF_mulMT,   chapter 9

MatrixLib Table of Contents  OptiVec home