Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function LogN(const X: TMtx; N: Double): Matrix; | Result = X^2 from the source |
| 2 | function LogN(const X: TVec; N: Double): Vector; | Result = X^2 from the source |
Overload 1: function LogN(const X: TMtx; N: Double): Matrix;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | |
| 2 | N | Double | scalar |
Returns: Matrix
Remarks:
Internally calls Matrix.LogN
Overload 2: function LogN(const X: TVec; N: Double): Vector;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | |
| 2 | N | Double | scalar |
Returns: Vector
Remarks:
Internally calls Vector.LogN