Skip to main content

is_orthogonal

Method of ComplexMatrix.

Overloads

NameDescription
is_orthogonal(const ComplexMatrix rhs) -> boolReturns true if the ComplexMatrix lhs is orthogonal to the ComplexMatrix rhs. This function is only supported by one-dimensional matrices (i.e. vectors)
is_orthogonal(const ComplexMatrix rhs, real tolerance) -> boolReturns true if the ComplexMatrix lhs is orthogonal to the ComplexMatrix rhs. This function is only supported by one-dimensional matrices (i.e. vectors)

is_orthogonal(const ComplexMatrix rhs) -> bool

Returns true if the ComplexMatrix lhs is orthogonal to the ComplexMatrix rhs. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

is_orthogonal(const ComplexMatrix rhs, real tolerance) -> bool

Returns true if the ComplexMatrix lhs is orthogonal to the ComplexMatrix rhs. This function is only supported by one-dimensional matrices (i.e. vectors)

Parameters

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