Skip to main content

is_much_smaller_than

Method of BoolArray.

Overloads

NameDescription
is_much_smaller_than(const BoolArray rhs) -> boolReturns true if the norm of the BoolArray lhs is much smaller than the norm of the BoolArray rhs, within the specified tolerance.
is_much_smaller_than(const BoolArray rhs, bool tolerance) -> boolReturns true if the norm of the BoolArray lhs is much smaller than the norm of the BoolArray rhs, within the specified tolerance.
is_much_smaller_than(bool val) -> boolReturns true if the norm of the BoolArray lhs is much smaller than the specified constant val, within the specified tolerance.
is_much_smaller_than(bool val, bool tolerance) -> boolReturns true if the norm of the BoolArray lhs is much smaller than the specified constant val, within the specified tolerance.

is_much_smaller_than(const BoolArray rhs) -> bool

Returns true if the norm of the BoolArray lhs is much smaller than the norm of the BoolArray rhs, within the specified tolerance.

Parameters

is_much_smaller_than(const BoolArray rhs, bool tolerance) -> bool

Returns true if the norm of the BoolArray lhs is much smaller than the norm of the BoolArray rhs, within the specified tolerance.

Parameters

  • rhs: The second BoolArray to compare.
  • tolerance: The tolerance to use for comparison.

is_much_smaller_than(bool val) -> bool

Returns true if the norm of the BoolArray lhs is much smaller than the specified constant val, within the specified tolerance.

Parameters

  • val: The constant to compare against.

is_much_smaller_than(bool val, bool tolerance) -> bool

Returns true if the norm of the BoolArray 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.