Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Expj(X: TOpenCLMatrix): clMatrix; | Computes the e^xj function from the source. |
| 2 | function Expj(X: TOpenCLValue): clValue; | Computes the e^xj function from the source. |
| 3 | function Expj(X: TOpenCLVector): clVector; | Computes the e^xj function from the source. |
Overload 1: function Expj(X: TOpenCLMatrix): clMatrix;
Computes the e^xj function from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Expj
Overload 2: function Expj(X: TOpenCLValue): clValue;
Computes the e^xj function from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clValue.Expj
Examples
var a: clValue;
begin
b.Copy(2);
a.Expj(b); // a = e^(2i)
end;
Overload 3: function Expj(X: TOpenCLVector): clVector;
Computes the e^xj function from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.Expj