TMtxInt::Divide Method

Overload List

#SignatureDescription
1TMtxVecInt *Divide(TMtxVecInt *Src1, TMtxVecInt *Src2);Divides coresponding elements in Src1 with Src2.
2TMtxVecInt *Divide(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);Divide coresponding elements in Src1 with Src2.
3TMtxVecInt *Divide(TMtxVecInt *Src);Divide calling object elements with Src elements.
4TMtxVecInt *Divide(TMtxVecInt *Src, int SrcIndex, int Index, int Len);Divide calling object elements with Src elements [SrcIndex..SrcIndex+Len-1].
5TMtxVecInt *Divide(TMtxVecInt *Src, int Value);Divide all Src vector elements with integer Value.
6TMtxVecInt *Divide(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);Divide Src vector elements [SrcIndex..SrcIndex+Len-1] with integer Value.
7TMtxVecInt *Divide(int Value);Divide all calling vector elements with integer value.
8TMtxVecInt *Divide(int Value, int Index, int Len);Divide calling vector elements [Index..Index+Len-1] with integer value.
9TMtxVecInt *Divide(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);Compute X / (Y*Z)
10TMtxVecInt *Divide(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);Compute X/( Y*Z ) on sub array
11TMtxVecInt *Divide(const int X, TMtxVecInt *Y, TMtxVecInt *Z);Compute xScalar / (Y*Z)
12TMtxVecInt *Divide(const int X, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);Compute xScalar / (Y*Z) on sub array

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

Divides coresponding elements in Src1 with Src2.

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *

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

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

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

Divide coresponding elements in Src1 with Src2.

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

Divide Src2 elements [Src2Index..Src2Index+Len-1] with corrresponding Src1 elements [Src1Index..Src1ndex+Len-1] 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 *Divide(TMtxVecInt *Src);

Divide calling object elements with Src elements.

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

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

Divide calling object elements with Src elements [SrcIndex..SrcIndex+Len-1].

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

Divide calling object elements [Index..Index+Len-1] with Src elements [SrcIndex..SrcIndex+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 *Divide(TMtxVecInt *Src, int Value);

Divide all Src vector elements with integer Value.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
Remarks:

Size of calling vector is adjusted automatically.

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

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

Divide Src vector elements [SrcIndex..SrcIndex+Len-1] with integer Value.

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

Divide Src elements [SrcIndex..SrcIndex+Len-1] with integer Value and store tje 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 *Divide(int Value);

Divide all calling vector elements with integer value.

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

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

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

#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

Overload 9: TMtxVecInt *Divide(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 Y also for the Z parameter:

X / (Y^2)

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

Overload 10: TMtxVecInt *Divide(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 11: TMtxVecInt *Divide(const int X, TMtxVecInt *Y, TMtxVecInt *Z);

Compute xScalar / (Y*Z)

#NameTypeDescription
1Xconst int
2YTMtxVecInt *
3ZTMtxVecInt *
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler

Overload 12: TMtxVecInt *Divide(const int X, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);

Compute xScalar / (Y*Z) on sub array

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