diff options
-rw-r--r-- | CHANGELOG | 28 | ||||
-rw-r--r-- | THANKS.md | 2 |
2 files changed, 29 insertions, 1 deletions
@@ -1,3 +1,31 @@ | |||
1 | 0.16.0.0 | ||
2 | -------- | ||
3 | |||
4 | * join renamed to vjoin | ||
5 | |||
6 | * dot renamed to udot (unconjugated dot product) | ||
7 | * Removed (<.>) | ||
8 | |||
9 | * added cdot, which conjugates the first input vector | ||
10 | * the operator (⋅) = cdot is available from Numeric.LinearAlgebra.Util | ||
11 | |||
12 | * added a general multiplication operator (×) | ||
13 | |||
14 | * Plot functions moved to Numeric.LinearAlgebra.Util | ||
15 | * removed (!) (use (¦) instead) | ||
16 | |||
17 | This version introduces a few backward incompatible changes but the code can be | ||
18 | updated very easily: | ||
19 | |||
20 | join -> vjoin | ||
21 | dot -> udot | ||
22 | <.> -> × | ||
23 | import Graphics.Plot -> import Numeric.LinearAlgebra.Util | ||
24 | |||
25 | The new contraction operator (×) performs matrix products, matrix-vector products, | ||
26 | unconjugated vector dot products, and scaling of vectors and matrices. | ||
27 | |||
28 | |||
1 | 0.15.2.0 | 29 | 0.15.2.0 |
2 | -------- | 30 | -------- |
3 | 31 | ||
@@ -151,5 +151,5 @@ module reorganization, monadic mapVectorM, and many other improvements. | |||
151 | 151 | ||
152 | - tfgit updated the OSX installation instructions via Homebrew | 152 | - tfgit updated the OSX installation instructions via Homebrew |
153 | 153 | ||
154 | 154 | - "yokto" and "ttylec" reported the problem with the dot product of complex vectors. | |
155 | 155 | ||