%
Overloads
| Name | Description |
|---|---|
(const integer arr % const IntegerArray m) -> IntegerArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const RealArray arr % const integer m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const integer arr % const RealArray m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const real arr % const RealArray m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const bool arr % const IntegerArray m) -> IntegerArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const bool arr % const RealArray m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const IntegerArray arr % const integer m) -> IntegerArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const IntegerArray arr % const bool m) -> IntegerArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const IntegerArray arr % const IntegerArray m) -> IntegerArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const RealArray arr % const real m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const RealArray arr % const bool m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const RealArray arr % const RealArray m) -> RealArray | Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m). |
(const integer arr % const IntegerArray m) -> IntegerArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const RealArray arr % const integer m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const integer arr % const RealArray m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const real arr % const RealArray m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const bool arr % const IntegerArray m) -> IntegerArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const bool arr % const RealArray m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const IntegerArray arr % const integer m) -> IntegerArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const IntegerArray arr % const bool m) -> IntegerArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const IntegerArray arr % const IntegerArray m) -> IntegerArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const RealArray arr % const real m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const RealArray arr % const bool m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.
(const RealArray arr % const RealArray m) -> RealArray
Computes the remainder after division of a by m, where a is the dividend and m is the divisor. Note that nonzero results have the same sign as the divisor. This function is equivalent to a - m * floor(a / m).
Parameters
- arr: The array or scalar dividend.
- m: The array or scalar divisor.