TMtxByte::Multiply Method

Overload List

#SignatureDescription
1TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2);Multiplies coresponding elements in Src2 with Src1.
2TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);Multiply coresponding elements in Src2 with Src1.
3TMtxVecInt *Multiply(TMtxVecInt *Src);Multiply Src elements with calling vector elements.
4TMtxVecInt *Multiply(TMtxVecInt *Src, int SrcIndex, int Index, int Len);Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements.
5TMtxVecInt *Multiply(TMtxVecInt *Src, int Value);Multiply integer Value with all Src elements.
6TMtxVecInt *Multiply(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1].
7TMtxVecInt *Multiply(int Value);Multiply integer value with all calling vector elements.
8TMtxVecInt *Multiply(int Value, int Index, int Len);Multiply integer value with calling vector elements [Index..Index+Len-1].

Overload 1: TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2);

Multiplies coresponding elements in Src2 with Src1.

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *

Returns: the result of multipliing Src2 values with coresponding Src1 values.

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

Overload 2: TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);

Multiply coresponding elements in Src2 with Src1.

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *
3SrcIndex1int
4SrcIndex2int
5Indexint
6Lenint
Remarks:

Multiply Src1 elements [Src1Index..Src1Index+Len-1] with corrresponding Src2 elements [Src2Index..Src2ndex+Len] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.

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

Overload 3: TMtxVecInt *Multiply(TMtxVecInt *Src);

Multiply Src elements with calling vector elements.

#NameTypeDescription
1SrcTMtxVecInt *
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 4: TMtxVecInt *Multiply(TMtxVecInt *Src, int SrcIndex, int Index, int Len);

Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements.

#NameTypeDescription
1SrcTMtxVecInt *
2SrcIndexint
3Indexint
4Lenint
Remarks:

Multiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.

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

Overload 5: TMtxVecInt *Multiply(TMtxVecInt *Src, int Value);

Multiply integer Value with all Src elements.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
Remarks:

Multiply integer Value with all Src elements and store the results in calling vector. Size of calling vector is adjusted automatically.

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

Overload 6: TMtxVecInt *Multiply(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);

Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1].

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
3SrcIndexint
4Indexint
5Lenint
Remarks:

Store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.

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

Overload 7: TMtxVecInt *Multiply(int Value);

Multiply integer value with all calling vector elements.

#NameTypeDescription
1Valueint
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 8: TMtxVecInt *Multiply(int Value, int Index, int Len);

Multiply integer value with calling vector elements [Index..Index+Len-1].

#NameTypeDescription
1Valueint
2Indexint
3Lenint
Remarks:

An exception is raised if array borders are overrun.

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