TVec::DivideBy Method

Overload List

#SignatureDescription
1TMtxVec *DivideBy(const double Value);Divide Value with elements of the calling object and store the result in the calling object.
2TMtxVec *DivideBy(const TCplx &Value);Divide complex Value with elements of the calling object.
3TMtxVec *DivideBy(const double Value, int Index, int Len);Divide Value with elements [Index]...[Index+Len-1] from the calling object.
4TMtxVec *DivideBy(const TCplx &Value, int Index, int Len);Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.
5TMtxVec *DivideBy(const double Value, TMtxVec *Vec);Divide Value with elements from Vec and store the result in the corresponding elements of the calling object.
6TMtxVec *DivideBy(const TCplx &Value, TMtxVec *Vec);Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object.
7TMtxVec *DivideBy(const double Value, TMtxVec *Vec, int VecIndex, int Index, int Len);Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].
8TMtxVec *DivideBy(const TCplx &Value, TMtxVec *Vec, int VecIndex, int Index, int Len);Divide complex Value with elements [VecIndex]..[VecIndes+Len-1] from Vec.

Overload 1: TMtxVec *DivideBy(const double Value);

Divide Value with elements of the calling object and store the result in the calling object.

#NameTypeDescription
1Valueconst double
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 2: TMtxVec *DivideBy(const TCplx &Value);

Divide complex Value with elements of the calling object.

#NameTypeDescription
1Valueconst TCplx &
Remarks:

Store the result in the calling object. Calling vector will be extended to complex, if the calling vector is real.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 3: TMtxVec *DivideBy(const double Value, int Index, int Len);

Divide Value with elements [Index]...[Index+Len-1] from the calling object.

#NameTypeDescription
1Valueconst double
2Indexint
3Lenint
Remarks:

Store the result in the calling object at position [Index]...[Index+Len-1]. An exception will be raised if TVec::ConditionCheck is True and array borders are overrun or underrun.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 4: TMtxVec *DivideBy(const TCplx &Value, int Index, int Len);

Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.

#NameTypeDescription
1Valueconst TCplx &
2Indexint
3Lenint
Remarks:

Store the result in the calling object at position [Index]...[Index+Len-1]. Calling vector will be extended to complex, if the calling vector is real. An exception will be raised if TVec::ConditionCheck is True and array borders are overrun or underrun.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 5: TMtxVec *DivideBy(const double Value, TMtxVec *Vec);

Divide Value with elements from Vec and store the result in the corresponding elements of the calling object.

#NameTypeDescription
1Valueconst double
2VecTMtxVec *
Remarks:

Size and TVec::Complex properties of the calling object are set automatically.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 6: TMtxVec *DivideBy(const TCplx &Value, TMtxVec *Vec);

Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object.

#NameTypeDescription
1Valueconst TCplx &
2VecTMtxVec *
Remarks:

Size of the calling object is set automatically. TVec::Complex property of the calling object is set to True.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 7: TMtxVec *DivideBy(const double Value, TMtxVec *Vec, int VecIndex, int Index, int Len);

Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].

#NameTypeDescription
1Valueconst double
2VecTMtxVec *
3VecIndexint
4Indexint
5Lenint
Remarks:

Store the result in the elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception will be raised if TVec::ConditionCheck is True and array borders are overrun or underrun. TVec::Complex property of the calling object is set implicitly.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 8: TMtxVec *DivideBy(const TCplx &Value, TMtxVec *Vec, int VecIndex, int Index, int Len);

Divide complex Value with elements [VecIndex]..[VecIndes+Len-1] from Vec.

#NameTypeDescription
1Valueconst TCplx &
2VecTMtxVec *
3VecIndexint
4Indexint
5Lenint
Remarks:

Store the result in the elements [Index]..[Index+Len-1] of the calling object. Size of the calling object is not changed. An exception will be raised if TVec::ConditionCheck is True and array borders are overrun or underrun. TVec::Complex property of the calling object is set to True.

Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler