is_much_smaller_than
Method of IntegerArray.
Overloads
| Name | Description |
|---|---|
is_much_smaller_than(const IntegerArray rhs, integer tolerance) -> bool | Returns true if the norm of the IntegerArray lhs is much smaller than the norm of the IntegerArray rhs, within the specified tolerance. |
is_much_smaller_than(integer val) -> bool | Returns true if the norm of the IntegerArray lhs is much smaller than the specified constant val, within the specified tolerance. |
is_much_smaller_than(const IntegerArray rhs) -> bool | Returns true if the norm of the IntegerArray lhs is much smaller than the norm of the IntegerArray rhs, within the specified tolerance. |
is_much_smaller_than(integer val, integer tolerance) -> bool | Returns true if the norm of the IntegerArray lhs is much smaller than the specified constant val, within the specified tolerance. |
is_much_smaller_than(const IntegerArray rhs, integer tolerance) -> bool
Returns true if the norm of the IntegerArray lhs is much smaller than the norm of the IntegerArray rhs, within the specified tolerance.
Parameters
- rhs: The second IntegerArray to compare.
- tolerance: The tolerance to use for comparison.
is_much_smaller_than(integer val) -> bool
Returns true if the norm of the IntegerArray lhs is much smaller than the specified constant val, within the specified tolerance.
Parameters
- val: The constant to compare against.
is_much_smaller_than(const IntegerArray rhs) -> bool
Returns true if the norm of the IntegerArray lhs is much smaller than the norm of the IntegerArray rhs, within the specified tolerance.
Parameters
- rhs: The second IntegerArray to compare.
is_much_smaller_than(integer val, integer tolerance) -> bool
Returns true if the norm of the IntegerArray lhs is much smaller than the specified constant val, within the specified tolerance.
Parameters
- val: The constant to compare against.
- tolerance: The tolerance to use for comparison.