Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function RealToCplx(const ReVec: TMtxVec; const ImVec: TMtxVec): TMtxVec; | Constructs a complex object from two real objects. |
| 2 | function RealToCplx(const ReVec: TMtxVec; const ImVec: TMtxVec; ReIndex: Integer; ImIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | Construct a complex object from the ReVec elements [ReIndex]..[ReIndex+Len-1] (real part) and the ImVec elements [ImIndex]..[ImIndex+Len-1] (imaginary part). |
Overload 1: function RealToCplx(const ReVec: TMtxVec; const ImVec: TMtxVec): TMtxVec;
Constructs a complex object from two real objects.
Result: stored in self (calling object), returns self for chaining
Construct a complex object from the ReVec (real part) and the ImVec (imaginary part) objects. The results are stored in the calling object. Size and Vector.Complex properties of the calling object are set implicitly to match ReVec and ImVec objects. An exception is raised if ReVec or ImVec Vector.Complex property is True.
var a,b,c: Vector;
begin
a.SetIt(True,[1,2,3,4]);
b.SetIt(True,[2,2,3,4]);
c.RealToCplx(a,b);
end;
Overload 2: function RealToCplx(const ReVec: TMtxVec; const ImVec: TMtxVec; ReIndex: Integer; ImIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Construct a complex object from the ReVec elements [ReIndex]..[ReIndex+Len-1] (real part) and the ImVec elements [ImIndex]..[ImIndex+Len-1] (imaginary part).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ReVec | TMtxVec | |
| 2 | ImVec | TMtxVec | |
| 3 | ReIndex | Integer | |
| 4 | ImIndex | Integer | |
| 5 | Index | Integer | start index |
| 6 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
The results are stored to calling object elements [Index]..[Index+Len-1]. Size and Vector.Complex properties of the calling object must be set explicitly. An exception is raised if Vector.ConditionCheck is True and array borders are overrun. An exception is also raised if ReVec or ImVec Vector.Complex property is True.