TMtxInt::Subtract Method

Overload List

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

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

Subtract coresponding elements in Src2 from Src1.

#NameTypeDescription
1Src1TMtxVecInt *
2Src2TMtxVecInt *

Returns: the result of subtracting Src2 values from coresponding Src1 values.

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

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

Add coresponding elements in Src1 from Src1.

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

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

Subtract all Src elements from calling vector elements.

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

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

Subtract Src elements [SrcIndex..SrcIndex+Len-1] from calling vector elements.

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

Subtract Src elements [SrcIndex..SrcIndex+Len-1] from 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 *Subtract(TMtxVecInt *Src, int Value);

Subtract integer Value from all Src elements.

#NameTypeDescription
1SrcTMtxVecInt *
2Valueint
Remarks:

Subtract integer Value from 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 *Subtract(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);

Subtract integer Value from Src elements [SrcIndex..SrcIndex+Len-1].

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

Subtract integer Value from Src elements [SrcIndex..SrcIndex+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 7: TMtxVecInt *Subtract(int Value);

Subtract integer value from all calling vector elements.

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

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

Subtract integer value from 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