Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *DivideBy(const double Value); | Divide Value with elements of the calling object and store the result in the calling object. |
| 2 | TMtxVec *DivideBy(const TCplx &Value); | Divide complex Value with elements of the calling object. |
| 3 | TMtxVec *DivideBy(const double Value, int Index, int Len); | Divide Value with elements [Index]...[Index+Len-1] from the calling object. |
| 4 | TMtxVec *DivideBy(const TCplx &Value, int Index, int Len); | Divide complex Value with elements [Index]...[Index+Len-1] from the calling object. |
| 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. |
| 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. |
| 7 | TMtxVec *DivideBy(const double Value, TMtxVec *Vec, int VecIndex, int Index, int Len); | Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1]. |
| 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. |
Overload 1: TMtxVec *DivideBy(const double Value);
Divide Value with elements of the calling object and store the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double |
Overload 2: TMtxVec *DivideBy(const TCplx &Value);
Divide complex Value with elements of the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & |
Store the result in the calling object. Calling vector will be extended to complex, if the calling vector is real.
Overload 3: TMtxVec *DivideBy(const double Value, int Index, int Len);
Divide Value with elements [Index]...[Index+Len-1] from the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double | |
| 2 | Index | int | |
| 3 | Len | int |
Store the result in the calling object at position [Index]...[Index+Len-1]. An exception will be raised if TMtx::ConditionCheck is True and array borders are overrun or underrun.
Overload 4: TMtxVec *DivideBy(const TCplx &Value, int Index, int Len);
Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |
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 TMtx::ConditionCheck is True and array borders are overrun or underrun.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double | |
| 2 | Vec | TMtxVec * |
Size and TMtx::Complex properties of the calling object are set automatically.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & | |
| 2 | Vec | TMtxVec * |
Size of the calling object is set automatically. TMtx::Complex property of the calling object is set to True.
Overload 7: TMtxVec *DivideBy(const double Value, TMtxVec *Vec, int VecIndex, int Index, int Len);
Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const double | |
| 2 | Vec | TMtxVec * | |
| 3 | VecIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
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 TMtx::ConditionCheck is True and array borders are overrun or underrun. TMtx::Complex property of the calling object is set implicitly.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const TCplx & | |
| 2 | Vec | TMtxVec * | |
| 3 | VecIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
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 TMtx::ConditionCheck is True and array borders are overrun or underrun. TMtx::Complex property of the calling object is set to True.