VectorInt::Multiply Method

Overload List

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

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

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::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

Multiply coresponding elements in Src2 with Src1.

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *
3SrcIndex1const int
4SrcIndex2const int
5Indexconst int
6Lenconst int
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::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

Multiply Src elements with calling vector elements.

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

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

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

#NameTypeDescription
1SrcTMtxVecInt *
2SrcIndexconst int
3Indexconst int
4Lenconst int
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::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

Multiply integer Value with all Src elements.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueconst int
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::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

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

#NameTypeDescription
1SrcTMtxVecInt *
2Valueconst int
3SrcIndexconst int
4Indexconst int
5Lenconst int
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::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

Overload 7: TMtxVecInt *Multiply(const int Value) const;

Multiply integer value with all calling vector elements.

#NameTypeDescription
1Valueconst int
Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler

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

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

#NameTypeDescription
1Valueconst int
2Indexconst int
3Lenconst int
Remarks:

An exception is raised if array borders are overrun.

Declared in Dew::Math::VectorInt · Dew.Math/MtxExprInt.h · Cross-compiler