Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function InvCbrt(const X: TMtx): Matrix; | Result = (1/X)^2 |
| 2 | function InvCbrt(const X: TVec): Vector; | Result = (1/X)^2 |
Overload 1: function InvCbrt(const X: TMtx): Matrix;
Compute (1/X)^2.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx |
Returns: Matrix
Remarks:
Internally calls Matrix.InvCbrt
Overload 2: function InvCbrt(const X: TVec): Vector;
Compute (1/X)^2.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec |
Returns: Vector
Remarks:
Internally calls Vector.InvCbrt