Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function DivideBy(Value: TCplx): TMtxVec; | Divide complex Value with elements of the calling object and store the result in the calling object. |
| └ indexed: function DivideBy(Value: TCplx; Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function DivideBy(Value: TCplx; Vec: TMtxVec): TMtxVec; | Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object. |
| └ indexed: function DivideBy(Value: TCplx; Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | ||
| 3 | function DivideBy(Value: Double): TMtxVec; | Divide Value with elements of the calling object and store the result in the calling object. |
| └ indexed: function DivideBy(Value: Double; Index: Integer; Len: Integer): TMtxVec; | ||
| 4 | function DivideBy(Value: Double; Vec: TMtxVec): TMtxVec; | Divide Value with elements from Vec and store the result in the corresponding elements of the calling object. |
| └ indexed: function DivideBy(Value: Double; Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function DivideBy(Value: TCplx): TMtxVec;
Divide complex Value with elements of the calling object and store the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Calling vector will be extended to complex, if the calling vector is real.
Indexed: function DivideBy(Value: TCplx; Index: Integer; Len: Integer): TMtxVec;
Divide complex Value with elements [Index]...[Index+Len-1] from the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
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 Vector.ConditionCheck is True and array borders are overrun or underrun.
Overload 2: function DivideBy(Value: TCplx; Vec: TMtxVec): TMtxVec;
Divide complex Value with elements from Vec and store the result in the corresponding elements of the calling object.
Result: stored in self (calling object), returns self for chaining
Size of the calling object is set automatically. Vector.Complex property of the calling object is set to True.
Indexed: function DivideBy(Value: TCplx; Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Divide complex Value with elements [VecIndex]..[VecIndes+Len-1] from Vec.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
| 2 | Vec | TMtxVec | source TVec or TMtx |
| 3 | VecIndex | Integer | |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
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 Vector.ConditionCheck is True and array borders are overrun or underrun. Vector.Complex property of the calling object is set to True.
Overload 3: function DivideBy(Value: Double): TMtxVec;
Divide Value with elements of the calling object and store the result in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: function DivideBy(Value: Double; Index: Integer; Len: Integer): TMtxVec;
Divide Value with elements [Index]...[Index+Len-1] from the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Store the result in the calling object at position [Index]...[Index+Len-1]. An exception will be raised if Vector.ConditionCheck is True and array borders are overrun or underrun.
Overload 4: function DivideBy(Value: Double; Vec: TMtxVec): TMtxVec;
Divide Value with elements from Vec and store the result in the corresponding elements of the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
| 2 | Vec | TMtxVec | source TVec or TMtx |
Result: stored in self (calling object), returns self for chaining
Size and Vector.Complex properties of the calling object are set automatically.
Indexed: function DivideBy(Value: Double; Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Divide Value with Vec elements [VecIndex]..[VecIndes+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
| 2 | Vec | TMtxVec | source TVec or TMtx |
| 3 | VecIndex | Integer | |
| 4 | Index | Integer | start index |
| 5 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
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 Vector.ConditionCheck is True and array borders are overrun or underrun. Vector.Complex property of the calling object is set implicitly.