MatrixInt::DivideBy Method

Overload List

#SignatureDescription
1TMtxVecInt *DivideBy(const int Value) const;Divide Value with calling vector elements.
2TMtxVecInt *DivideBy(const int Value, const int Index, const int Len) const;Divide Value with calling vector elements [Index..Index+Len-1].
3TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src) const;Divide Value with Src vector elements and store the result in the calling vector.
4TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const;Divide Value with Src vector elements [SrcIndex+SrcIndex+Len-1] and store the result in the calling vector [Index...Index+Len-1].

Overload 1: TMtxVecInt *DivideBy(const int Value) const;

Divide Value with calling vector elements.

#NameTypeDescription
1Valueconst int
Remarks:

Teh result is stored in the calling vector.

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

Overload 2: TMtxVecInt *DivideBy(const int Value, const int Index, const int Len) const;

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

Overload 3: TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src) const;

Divide Value with Src vector elements and store the result in the calling vector.

#NameTypeDescription
1Valueconst int
2SrcTMtxVecInt *
Remarks:

An exception is raised if array borders are overrun.

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

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

Divide Value with Src vector elements [SrcIndex+SrcIndex+Len-1] and store the result in the calling vector [Index...Index+Len-1].

#NameTypeDescription
1Valueconst int
2SrcTMtxVecInt *
3SrcIndexconst int
4Indexconst int
5Lenconst int
Remarks:

An exception is raised if array borders are overrun.

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