You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, if A is a matrix, then norm(A,p) emits a deprecation warning and calls opnorm(A,p), in line with Julia 0.7. In the next breaking release, we should make norm(A,p) call norm(vec(A), p) as the deprecation warning states, and remove the warning.
The text was updated successfully, but these errors were encountered:
Step 1: remove norm(A, p) for matrices at all, so it produces an error. This was done in v0.14.0 via #412.
Step 2: re-introduce norm(A, p) as norm(vec(A), p). This will be done in v0.15.0.
This way, hopefully users will not get incorrect answers if they haven't noticed the deprecation warnings (which are off by default on Julia 1.5+).
Right now, if
A
is a matrix, thennorm(A,p)
emits a deprecation warning and callsopnorm(A,p)
, in line with Julia 0.7. In the next breaking release, we should makenorm(A,p)
callnorm(vec(A), p)
as the deprecation warning states, and remove the warning.The text was updated successfully, but these errors were encountered: