Skip to main content

is_much_smaller_than

Method of ComplexMatrix.

Overloads

NameDescription
is_much_smaller_than(real val, real tolerance) -> boolReturns true if the norm of the ComplexMatrix 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 ComplexMatrix lhs is much smaller than the specified constant val, within the specified tolerance.
is_much_smaller_than(const ComplexMatrix rhs, real tolerance) -> boolReturns true if the norm of the ComplexMatrix lhs is much smaller than the norm of the ComplexMatrix rhs, within the specified tolerance.
is_much_smaller_than(const ComplexMatrix rhs) -> boolReturns true if the norm of the ComplexMatrix lhs is much smaller than the norm of the ComplexMatrix rhs, within the specified tolerance.

is_much_smaller_than(real val, real tolerance) -> bool

Returns true if the norm of the ComplexMatrix 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 ComplexMatrix 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 ComplexMatrix rhs, real tolerance) -> bool

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

Parameters

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

is_much_smaller_than(const ComplexMatrix rhs) -> bool

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

Parameters