Skip to content

Commit

Permalink
added news
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Jun 19, 2018
1 parent e5127f8 commit 274d597
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,13 @@ This section lists changes that do not have deprecation warnings.
This change makes `@schedule` redundant with `@async`, so `@schedule` has been
deprecated ([#27164]).

* `norm(A::AbstractMatrix, p=2)` computes no longer the operator/matrix norm but the `norm` of `A`
as for other iterables, i.e. as if it were a vector. Especially, `norm(A::AbstractMatrix)` is the
Frobenius norm. To compute the operator/matrix norm, use the new function `opnorm` ([#27401]).

* `dot(u, v)` now acts recursively. Instead of `sum(u[i]' * v[i] for i in ...)`, it computes
`sum(dot(u[i], v[i]) for i in ...)`, similarly to `vecdot` before ([#27401]).

Library improvements
--------------------

Expand Down Expand Up @@ -1274,6 +1281,8 @@ Deprecated or removed

* The functions `eigs` and `svds` have been moved to the `Arpack.jl` package ([#27616]).

* `vecdot` and `norm` are deprecated in favor of `dot` and `norm`, respectively ([#27401]).

Command-line option changes
---------------------------

Expand Down Expand Up @@ -1610,3 +1619,4 @@ Command-line option changes
[#27189]: https://github.com/JuliaLang/julia/issues/27189
[#27212]: https://github.com/JuliaLang/julia/issues/27212
[#27248]: https://github.com/JuliaLang/julia/issues/27248
[#27401]: https://github.com/JuliaLang/julia/issues/27401

0 comments on commit 274d597

Please sign in to comment.