is_orthogonal
Method of ComplexMatrix.
Overloads
| Name | Description |
|---|---|
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) |
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) |
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
- rhs: The ComplexMatrix.
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.