Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Offset(const Value: TCplx): TMtxVec; | Add/Subtract a complex value. |
| └ indexed: function Offset(const Value: TCplx; Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function Offset(const Value: Double): TMtxVec; | Add/Subtract a value. |
| └ indexed: function Offset(const Value: Double; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function Offset(const Value: TCplx): TMtxVec;
Add/Subtract a complex value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | TCplx | scalar |
Result: stored in self (calling object), returns self for chaining
Indexed: function Offset(const Value: TCplx; Index: Integer; Len: Integer): TMtxVec;
Add/Subtract a complex value from [Index]..[Index+Len-1].
| # | 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
Overload 2: function Offset(const Value: Double): TMtxVec;
Add/Subtract a value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Remarks:
Depreciated
Use TDenseMtxVec.Add (Value) instead.
Indexed: function Offset(const Value: Double; Index: Integer; Len: Integer): TMtxVec;
Add/Subtract a value from [Index]..[Index+Len-1].
| # | 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