Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Rem(const X: TMtx; const Y: TMtx): Matrix; | Return reminder after division of X by Y. |
| 2 | function Rem(const X: TMtx; const Y: Double): Matrix; | Return reminder after division of X by Y. |
| 3 | function Rem(const X: TVec; const Y: TVec): Vector; | Return reminder after division of X by Y. |
| 4 | function Rem(const X: TVec; const Y: Double): Vector; | Return reminder after division of X by Y. |
Overload 1: function Rem(const X: TMtx; const Y: TMtx): Matrix;
Overload 2: function Rem(const X: TMtx; const Y: Double): Matrix;
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtx | |
| 2 | Y | Double |
Returns: Matrix
Remarks:
Internally calls Matrix.Rem
Overload 3: function Rem(const X: TVec; const Y: TVec): Vector;
Overload 4: function Rem(const X: TVec; const Y: Double): Vector;
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec | |
| 2 | Y | Double |
Returns: Vector
Remarks:
Internally calls Matrix.Rem