summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2014-04-24 20:50:10 +0200
committerAlberto Ruiz <aruiz@um.es>2014-04-24 20:50:10 +0200
commitcd3daf7e12fa2a8c775a1d6516049bbc7e44da32 (patch)
treeee2969b42838c13a282a4082dbb0f8c8c53af2a5 /CHANGELOG
parentc2b3835a9a43d822d6134ef51a9ec9627a9e95c3 (diff)
deprecate vjoin, dot and (<.>). Move (⋅) to Container
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG26
1 files changed, 6 insertions, 20 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 393c52a..dea29a9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,32 +1,18 @@
10.16.0.0 10.16.0.0
2-------- 2--------
3 3
4 * join renamed to vjoin 4 * join deprecated, use vjoin
5 5 * dot and (<.>) deprecated, use udot or (×)
6 * dot renamed to udot (unconjugated dot product) 6
7 * Removed (<.>) 7 * added udot (unconjugated dot product)
8 8 * added (⋅) = cdot, which conjugates the first input vector
9 * added cdot, which conjugates the first input vector
10 * the operator (⋅) = cdot is available from Numeric.LinearAlgebra.Util
11 9
12 * added a general multiplication operator (×) 10 * added a general multiplication operator (×)
13 11
14 * improved build and konst 12 * improved build and konst
15 13
16 * Plot functions moved to Numeric.LinearAlgebra.Util 14 * Plot functions moved to Numeric.LinearAlgebra.Util
17 * removed (!) (use (¦) instead) 15 * removed (!) (use (¦))
18
19This version introduces a few backward incompatible changes but the code can be
20updated very easily:
21
22join -> vjoin
23dot -> udot
24<.> -> ×
25import Graphics.Plot -> import Numeric.LinearAlgebra.Util
26
27The new contraction operator (×) performs matrix products, matrix-vector products,
28unconjugated vector dot products, and scaling of vectors and matrices.
29
30 16
310.15.2.0 170.15.2.0
32-------- 18--------