TMtxInt::RemDiv Method

Overload List

#SignatureDescription
1TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst);Divide all Src elements with Value elements and store result of division in the calling object and reminder in RemDst.
2TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int SrcIndex, int ValueIndex, int RemDstIndex, int Index, int Len);Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
3TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst);Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
4TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst, int SrcIndex, int RemDstIndex, int Index, int Len);Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.
5TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst);Divide Src with all Value elements and store result of division in the calling object and reminder in RemDst.
6TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int ValueIndex, int RemDstIndex, int Index, int Len);Divide Src with Value elements and store result of division in the calling object and reminder in RemDst.

Overload 1: TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst);

Divide all Src elements with Value elements and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1SrcTMtxVecInt *
2ValueTMtxVecInt *
3RemDstTMtxVecInt *
Remarks:

Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.

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

Overload 2: TMtxVecInt *RemDiv(TMtxVecInt *Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int SrcIndex, int ValueIndex, int RemDstIndex, int Index, int Len);

Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1SrcTMtxVecInt *
2ValueTMtxVecInt *
3RemDstTMtxVecInt *
4SrcIndexint
5ValueIndexint
6RemDstIndexint
7Indexint
8Lenint
Remarks:

Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.

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

Overload 3: TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst);

Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
3RemDstTMtxVecInt *
Remarks:

Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.

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

Overload 4: TMtxVecInt *RemDiv(TMtxVecInt *Src, int Value, TMtxVecInt *RemDst, int SrcIndex, int RemDstIndex, int Index, int Len);

Divide all Src elements with Value and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
3RemDstTMtxVecInt *
4SrcIndexint
5RemDstIndexint
6Indexint
7Lenint
Remarks:

Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.

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

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

Divide Src with all Value elements and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1Srcint
2ValueTMtxVecInt *
3RemDstTMtxVecInt *
Remarks:

Size and TMtxInt::IntPrecision properties of the calling object and of RemDst are adjusted automatically.

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

Overload 6: TMtxVecInt *RemDiv(int Src, TMtxVecInt *Value, TMtxVecInt *RemDst, int ValueIndex, int RemDstIndex, int Index, int Len);

Divide Src with Value elements and store result of division in the calling object and reminder in RemDst.

#NameTypeDescription
1Srcint
2ValueTMtxVecInt *
3RemDstTMtxVecInt *
4ValueIndexint
5RemDstIndexint
6Indexint
7Lenint
Remarks:

Store the result of division in the calling object elements [Index]..[Index+Len-1] and remainder in to [RemDstIndex] .. [RemDstIndex+ Len-1]. Size and TMtxInt::IntPrecision properties of the calling object and RemDst must be set explicitly. An exception is raised if TMtxInt::ConditionCheck is true and array borders are overrun/underrun.

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