Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

norm(matrix) -> opnorm(matrix) in Julia 0.7 #63

Closed
stevengj opened this issue Jun 15, 2018 · 0 comments
Closed

norm(matrix) -> opnorm(matrix) in Julia 0.7 #63

stevengj opened this issue Jun 15, 2018 · 0 comments

Comments

@stevengj
Copy link

It looks like may be using norm(matrix). In Julia 0.7, this will compute the Frobenius norm (vecnorm in Julia 0.6), due to JuliaLang/julia#27401. If you want the induced/operator norm as in Julia 0.6, use opnorm(matrix) instead, or Compat.opnorm(matrix) to work in 0.6 and 0.7 (JuliaLang/Compat.jl#577).

Note that, for testing purposes, rather than @test norm(A - B) ≤ tol, it is usually preferred to do @test A ≈ B or @test A ≈ B rtol=... (which uses isapprox).

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants