Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Conj: TMtxVec; | Conjugate. |
| └ indexed: function Conj(Index: Integer; Len: Integer): TMtxVec; | ||
| 2 | function Conj(const Vec: TMtxVec): TMtxVec; | Conjugate each of Vec elements and store the results in the calling object. |
| └ indexed: function Conj(const Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec; |
Overload 1: function Conj: TMtxVec;
Conjugate.
Result: stored in self (calling object), returns self for chaining
Conjugate all calling object elements in-place.
var c: Matrix;
begin
c.SetIt(1,2,True,[1,2,3,4]); // c = [1+2i, 3+4i]
c.Conj; // c = [1-2i, 3-4i]
end;
Indexed: function Conj(Index: Integer; Len: Integer): TMtxVec;
Conjugate calling object elements [Index]..[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | Integer | start index |
| 2 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
An exception is raised if Matrix.ConditionCheck is true and array borders are overrun.
Overload 2: function Conj(const Vec: TMtxVec): TMtxVec;
Conjugate each of Vec elements and store the results in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec |
Result: stored in self (calling object), returns self for chaining
Size and Matrix.Complex properties of the calling object are set implicitly to match Vec Matrix.
Indexed: function Conj(const Vec: TMtxVec; VecIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Conjugate Vec elements Vec[VecIndex]..Vec[VecIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec | |
| 2 | VecIndex | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Store them in the calling object elements [Index]..[Index+Len-1]. Size and Matrix.Complex properties of the calling object must be set explicitly. An exception is raised if Matrix.ConditionCheck is true and array borders are overrun.