summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG28
1 files changed, 28 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 8cecb1b..d288f37 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,31 @@
10.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
17This version introduces a few backward incompatible changes but the code can be
18updated very easily:
19
20join -> vjoin
21dot -> udot
22<.> -> ×
23import Graphics.Plot -> import Numeric.LinearAlgebra.Util
24
25The new contraction operator (×) performs matrix products, matrix-vector products,
26unconjugated vector dot products, and scaling of vectors and matrices.
27
28
10.15.2.0 290.15.2.0
2-------- 30--------
3 31