Skip to content

Commit

Permalink
added news
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Jun 15, 2018
1 parent 2a1b47a commit cd43896
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 @@ -508,6 +508,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 @@ -1269,6 +1276,8 @@ Deprecated or removed

* `atan2` is now a 2-argument method of `atan` ([#27248]).

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

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

Expand Down Expand Up @@ -1605,3 +1614,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 cd43896

Please sign in to comment.