We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83a2130 commit a7dfef4Copy full SHA for a7dfef4
1 file changed
src/common/matrixproperties.jl
@@ -50,7 +50,7 @@ function is_left_isometric(A::AbstractMatrix; atol::Real = 0, rtol::Real = defau
50
P = A' * A
51
nP = norm(P) # isapprox would use `rtol * max(norm(P), norm(I))`
52
diagview(P) .-= 1
53
- return norm(P) <= max(atol, rtol * nP) # assume that the norm of I is `sqrt(n)`
+ return norm(P) ≤ max(atol, rtol * nP) # assume that the norm of I is `sqrt(n)`
54
end
55
56
@doc """
0 commit comments