Skip to main content

is_much_smaller_than

Method of RealMatrix.

Overloads

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

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

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

Parameters

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

is_much_smaller_than(real val, real tolerance) -> bool

Returns true if the norm of the RealMatrix 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(real val) -> bool

Returns true if the norm of the RealMatrix 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 RealMatrix rhs) -> bool

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

Parameters