]> gitweb.michael.orlitzky.com - numerical-analysis.git/history - src/Linear/Matrix.hs
Fix the incorrect definition of "minor".
[numerical-analysis.git] / src / Linear / Matrix.hs
2014-02-12 Michael OrlitzkyFix the incorrect definition of "minor".
2014-02-12 Michael OrlitzkyAdd Linear.Matrix.ifoldr2.
2014-02-11 Michael OrlitzkyAdd Linear.Matrix.set_idx.
2014-02-11 Michael OrlitzkyGeneralize colzip and colzipwith to any matrices.
2014-02-11 Michael OrlitzkyAdd reverse2 to Linear.Matrix.
2014-02-11 Michael OrlitzkyAdd another test for 'cholesky'.
2014-02-08 Michael OrlitzkyAdd the imap2 function to Linear.Matrix.
2014-02-08 Michael OrlitzkyMake safe indexing slower but not dependent on the...
2014-02-08 Michael OrlitzkyRemove the "row" function which returned a vector inste...
2014-02-07 Michael OrlitzkyDrop the 'column' function that returned a vector inste...
2014-02-07 Michael OrlitzkyRename matmap to map2.
2014-02-07 Michael OrlitzkyAdd the 'ifoldl2' function to Linear.Matrix.
2014-02-05 Michael OrlitzkyRename zipcol to colzip.
2014-02-05 Michael OrlitzkyAdd zipcol and matmap functions in Linear.Matrix.
2014-02-04 Michael OrlitzkyAdd type synonyms for column/row matrices.
2014-02-03 Michael OrlitzkySmall cleanups in Linear.Vector.
2014-02-03 Michael OrlitzkyClean up imports everywhere.
2014-02-03 Michael OrlitzkyAdd tolerant versions of is_{upper,lower}_triangular.
2014-02-02 Michael OrlitzkySwitch Linear.Vector to the numeric prelude and add...
2014-02-02 Michael OrlitzkyAdd the Frobenius norm to Linear.Matrix.
2014-02-02 Michael OrlitzkyNew function: Linear.Matrix.identity_matrix.
2014-02-02 Michael OrlitzkyFix implementation of Linear.Matrix.construct.
2014-01-30 Michael OrlitzkyBump dependencies.
2013-07-21 Michael OrlitzkyRename 'diagonal' to 'diagonal_part'.
2013-07-21 Michael OrlitzkyFix a bunch of hlint warnings.
2013-07-21 Michael OrlitzkyAdd 'diagonal' function.
2013-07-21 Michael OrlitzkyConstrain Normed instance to column vectors (m-by-1...
2013-06-08 Michael OrlitzkyUpdate numeric-prelude and fixed-vector.
2013-02-24 Michael OrlitzkyGet determinants working.
2013-02-24 Michael OrlitzkyReplace the whole Matrix implementation with something...
2013-02-24 Michael OrlitzkyAdd triangular functions, determinant, minor (all half...
2013-02-21 Michael OrlitzkyFix compiler warnings and doctests.
2013-02-21 Michael OrlitzkyConvert scalars to 1x1 vectors.
2013-02-21 Michael OrlitzkyA huge pile of crap upon Matrix/Vector.
2013-02-12 Michael OrlitzkyMove the Vector and Matrix modules under Linear.