Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Expj: TMtxVec; | A complex exponential e^(j*W). |
| 2 | function Expj(Omega: TMtxVec): TMtxVec; | Calculate the e^(j*W), a complex exponential. |
| 3 | function Expj(Omega: TMtxVec; OmegaIndex: Integer; Index: Integer; Len: Integer): TMtxVec; | Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1]. |
Overload 1: function Expj: TMtxVec;
A complex exponential e^(j*W).
Result: stored in self (calling object), returns self for chaining
Calculate the calling object complex exponential in-place. An exception is raised if calling object is complex. If object is complex, you should use the method instead.
var a: Vector;
begin
a.SetIt(False,[1,2,3,4]);
a.Expj; // a = [e^i, e^2i, e^3i, e^4i]
end;
Overload 2: function Expj(Omega: TMtxVec): TMtxVec;
Calculate the e^(j*W), a complex exponential.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Omega | TMtxVec | source TVec or TMtx |
Result: stored in self (calling object), returns self for chaining
Omega must be a real object. If omega is complex, then use the method.
Overload 3: function Expj(Omega: TMtxVec; OmegaIndex: Integer; Index: Integer; Len: Integer): TMtxVec;
Calculate the complex exponential for Omega elements [OmegaIndex]..[OmegaIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Omega | TMtxVec | source TVec or TMtx |
| 2 | OmegaIndex | Integer | |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Result: stored in self (calling object), returns self for chaining
Store the results in calling object elements [Index]..[Index+Len-1]. Size and Vector.Complex properties of the calling vector must be set explicitly. An exception is raised if Vector.ConditionCheck is True and array borders are overrun or underrun.