Skip to main content

is_much_smaller_than

Method of RealArray.

Overloads

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

is_much_smaller_than(const RealArray rhs, real tolerance) -> bool

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

Parameters

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

is_much_smaller_than(real val) -> bool

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

Parameters

  • val: The constant to compare against.

is_much_smaller_than(real val, real tolerance) -> bool

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

is_much_smaller_than(const RealArray rhs) -> bool

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

Parameters