pub fn assert_orthogonal<F>(
matrix: &ArrayBase<ViewRepr<&F>, Dim<[usize; 2]>>,
name: &str,
tolerance: F,
) -> Result<(), CoreError>Expand description
Assert that a 2-D matrix is orthogonal within tolerance.
Checks that A^T * A is close to the identity matrix.