TVec::Scale Method

Overload List

#SignatureDescription
1TMtxVec *Scale(const double Factor);Multiply object elements with Value.
2TMtxVec *Scale(const double Factor, int Index, int Len);Multipy calling object elements [Index]..[Index+Len-1] with Value in-place.
3TMtxVec *Scale(const TCplx &Factor);Multiply all calling object elements with a complex Value in-place.
4TMtxVec *Scale(const TCplx &Factor, int Index, int Len);Multipy calling object elements [Index]..[Index+Len-1] with complex Value in-place.

Overload 1: TMtxVec *Scale(const double Factor);

Multiply object elements with Value.

#NameTypeDescription
1Factorconst double
Remarks:

Multiply all calling object elements with Value in-place. This method is the same as the TVec::Mul method overloads multiplying with vector elements with a scalar.

See Also: TVec::Add
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 2: TMtxVec *Scale(const double Factor, int Index, int Len);

Multipy calling object elements [Index]..[Index+Len-1] with Value in-place.

#NameTypeDescription
1Factorconst double
2Indexint
3Lenint
Remarks:

An exception is raised if array borders are overrun or underrun.

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

Overload 3: TMtxVec *Scale(const TCplx &Factor);

Multiply all calling object elements with a complex Value in-place.

#NameTypeDescription
1Factorconst TCplx &
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler

Overload 4: TMtxVec *Scale(const TCplx &Factor, int Index, int Len);

Multipy calling object elements [Index]..[Index+Len-1] with complex Value in-place.

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

An exception is raised if array borders are overrun or underrun.

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