TMtxInt::Mul Method

Overload List

#SignatureDescription
1TMtxVecInt *Mul(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);Compute X*Y*Z
2TMtxVecInt *Mul(TMtxVecInt *X, TMtxVecInt *Y, const int Z);Compute X*Y*zScalar
3TMtxVecInt *Mul(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);Compute X*Y*Z on sub array
4TMtxVecInt *Mul(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int Z, int Index, int Len);Compute X*Y*zScalar on sub array

Overload 1: TMtxVecInt *Mul(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);

Compute X*Y*Z

#NameTypeDescription
1XTMtxVecInt *
2YTMtxVecInt *
3ZTMtxVecInt *
Remarks:

The following expression would also run at the same or higher speed, when passing X also for the Z parameter:

X^2*Y

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 2: TMtxVecInt *Mul(TMtxVecInt *X, TMtxVecInt *Y, const int Z);

Compute X*Y*zScalar

#NameTypeDescription
1XTMtxVecInt *
2YTMtxVecInt *
3Zconst int
Remarks:

The following expression would also run at the same or higher speed, when passing X also for the Z parameter:

X^2*zScalar

Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 3: TMtxVecInt *Mul(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);

Compute X*Y*Z on sub array

#NameTypeDescription
1XTMtxVecInt *
2XIndexint
3YTMtxVecInt *
4YIndexint
5ZTMtxVecInt *
6zIndexint
7Indexint
8Lenint
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *Mul(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int Z, int Index, int Len);

Compute X*Y*zScalar on sub array

#NameTypeDescription
1XTMtxVecInt *
2XIndexint
3YTMtxVecInt *
4YIndexint
5Zconst int
6Indexint
7Lenint
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler