Orthogonalise set of vectors in-place.
(basis: list[Vector[_T]])
| 371 | |
| 372 | |
| 373 | def orthonormalize(basis: list[Vector[_T]]) -> None: |
| 374 | """Orthogonalise set of vectors in-place.""" |
| 375 | _cpp.la.orthonormalize([x._cpp_object for x in basis]) |
| 376 | |
| 377 | |
| 378 | def is_orthonormal(basis: list[Vector[_T]], eps: float = 1.0e-12) -> bool: |
no outgoing calls
no test coverage detected