]> gitweb.michael.orlitzky.com - numerical-analysis.git/shortlog
numerical-analysis.git
2014-02-11 Michael OrlitzkyUpdate Integration.Gaussian to use zip2.
2014-02-11 Michael OrlitzkyGeneralize colzip and colzipwith to any matrices.
2014-02-11 Michael OrlitzkyFix backward_substitute.
2014-02-11 Michael OrlitzkyAdd reverse2 to Linear.Matrix.
2014-02-11 Michael OrlitzkyAdd Eq constraints throughout Linear.Iteration.
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 OrlitzkyMore progress on the 1d FEM, the "big F" vector is...
2014-02-07 Michael OrlitzkyAdd the 'ifoldl2' function to Linear.Matrix.
2014-02-07 Michael OrlitzkyFix a typo.
2014-02-07 Michael OrlitzkyAdd a bunch more natural numbers in the Naturals module.
2014-02-06 Michael OrlitzkyAdd the (in progress) FEM.R1 module.
2014-02-06 Michael OrlitzkyFix some docs in Roots.Simple.
2014-02-05 Michael OrlitzkyImplement Gaussian quadrature and test it.
2014-02-05 Michael OrlitzkyRename zipcol to colzip.
2014-02-05 Michael OrlitzkyAdd the Integration.Gaussian.nodes_and_weights function.
2014-02-05 Michael OrlitzkyAdd zipcol and matmap functions in Linear.Matrix.
2014-02-04 Michael OrlitzkyAdd the Integration.Gaussian module where we begin...
2014-02-04 Michael OrlitzkyAdd comments to Linear.QR about non-convergence.
2014-02-04 Michael OrlitzkyFinish the eigenvectors_symmetric tests.
2014-02-04 Michael OrlitzkyAdd the eigenvectors_symmetric function and begin writi...
2014-02-04 Michael OrlitzkyImplement the QR algorithm for computing eigenvalues.
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 OrlitzkyAdd a Normed instance for (Vec n a).
2014-02-02 Michael OrlitzkySwitch Linear.Vector to the numeric prelude and add...
2014-02-02 Michael OrlitzkyRemove old comment from Normed.
2014-02-02 Michael OrlitzkyAdd the Frobenius norm to Linear.Matrix.
2014-02-02 Michael OrlitzkyAdd the Linear.QR module and update the ghci/cabal...
2014-02-02 Michael OrlitzkyNew function: Linear.Matrix.identity_matrix.
2014-02-02 Michael OrlitzkyFix implementation of Linear.Matrix.construct.
2014-01-30 Michael OrlitzkyAdd the Polynomials.Orthogonal module.
2014-01-30 Michael OrlitzkyBump dependencies.
2013-08-15 Michael OrlitzkyAdd the rayleigh_quotient function.
2013-07-21 Michael OrlitzkyAdd Gauss-Seidel and SOR iterative methods.
2013-07-21 Michael OrlitzkyRename 'diagonal' to 'diagonal_part'.
2013-07-21 Michael OrlitzkyFix a bunch of hlint warnings.
2013-07-21 Michael OrlitzkyUpdate ghci/cabal files to load the new module.
2013-07-21 Michael OrlitzkyAdd the Linear.Iteration module.
2013-07-21 Michael OrlitzkyAdd another example for forward_substitute.
2013-07-21 Michael OrlitzkyAdd 'diagonal' function.
2013-07-21 Michael OrlitzkyConstrain Normed instance to column vectors (m-by-1...
2013-07-01 Michael OrlitzkyAdd the unit_roundoff function.
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 Vec1, Vec4, Vec5 aliases.
2013-02-24 Michael OrlitzkyAdd triangular functions, determinant, minor (all half...
2013-02-24 Michael OrlitzkyAdd the Linear.System module.
2013-02-24 Michael OrlitzkyAdd the delete function to Vector.hs.
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-21 Michael OrlitzkyUpdate .ghci.
2013-02-21 Michael OrlitzkyRemove assumptions on the Normed class.
2013-02-21 Michael OrlitzkyConvert Integration/Simpson.hs and Integration/Trapezoi...
2013-02-20 Michael OrlitzkyUse RealField/RealRing where possible instead of their...
2013-02-20 Michael OrlitzkyRename Aliases.hs to BigFloat.hs, now containing numeri...
2013-02-20 Michael OrlitzkyMake the partition function work with numeric-prelude.
2013-02-20 Michael OrlitzkyAdd numeric-prelude to the deps.
2013-02-12 Michael OrlitzkyMove the Vector and Matrix modules under Linear.
2013-02-11 Michael OrlitzkyBump to fixed-vector-0.2.*.
2013-02-05 Michael OrlitzkyReplace (fromRational . toRational) with realToFrac...
2013-02-05 Michael OrlitzkyUpdate cabal file for the separate project/repo.
2013-02-05 Michael OrlitzkyFix import and module list names.
2013-02-05 Michael OrlitzkyAdd a 2D fixed-point doctest (example) to Vector.hs.
2013-02-05 Michael OrlitzkyAdd a Normed instance for Float.
2013-02-05 Michael OrlitzkyRemove non-fixed Matrix module.
2013-02-05 Michael OrlitzkyClean up imports in FixedMatrix.hs.
2013-02-05 Michael OrlitzkyClean up imports in FixedVector.hs.
2013-02-05 Michael OrlitzkyRemove reimplemented vector functions from FixedVector.hs.
2013-02-04 Michael OrlitzkyAdd a Vector instance for Vn.
2013-02-04 Michael OrlitzkyBegin the fixed-size matrix implementation.
2013-02-04 Michael OrlitzkyEncode the vector type in Vn.
2013-02-04 Michael OrlitzkyAdd toList and fromList functions in FixedVector.hs.
2013-02-04 Michael OrlitzkyRemove TwoTuple.hs.
2013-02-03 Michael OrlitzkyAdd 2d/3d wrapper types for easy pattern matching.
2013-02-03 Michael OrlitzkyReplace the custom 'Vector' typeclass with 'Normed...
2013-02-03 Michael OrlitzkyAdd cleaner Show instance for Vn.
2013-02-03 Michael OrlitzkyAdd FixedVector and Matrix to the compiled modules.
2013-02-03 Michael OrlitzkyFix compiler warnings in Matrix.hs.
2013-02-03 Michael OrlitzkyBegin implementation of normed, fixed-length vectors.
2013-02-03 Michael OrlitzkyFix two compiler warnings.
2013-02-03 Michael OrlitzkyRemove unused dependencies.
2013-02-03 Michael OrlitzkyAdd a simple unsafe matrix class to test the Cholesky...
2012-12-23 Michael OrlitzkyAdd an alternate book, and a gitignore for the numerica...
2012-12-09 Michael OrlitzkyFix an off-by-one error in Euler's method.
2012-12-09 Michael OrlitzkyAdd an implementation of Euler's method that takes...
2012-12-06 Michael OrlitzkyAdd the ODE.IVP module with Euler's method.
2012-12-06 Michael OrlitzkyBump test deps for ghc-7.6.
2012-12-05 Michael OrlitzkyBump deps for ghc-7.6.
2012-11-23 Michael OrlitzkyAdd Integration.Simpson implementing Simpson's rule...
2012-11-23 Michael OrlitzkyMove the partition function out of Integration.Trapezoi...
2012-11-23 Michael OrlitzkyUse filemanip to automatically doctest all source files.
next