diff options
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 28 |
1 files changed, 28 insertions, 0 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 | ||