]> gitweb.michael.orlitzky.com - numerical-analysis.git/shortlog
numerical-analysis.git
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.
2012-11-21 Michael OrlitzkyAdd the Integration.Trapezoid module; import it in...
2012-10-18 Michael OrlitzkyUse the 2-norm instead of the infty-norm for the fixed...
2012-10-17 Michael OrlitzkyFix a "norm" in Roots.Fast.
2012-10-17 Michael OrlitzkyRename "norm" to "norm_2" in the Vector class.
2012-10-17 Michael OrlitzkyAdd an iteration count to the fixed_point function...
2012-10-17 Michael OrlitzkyRequire Vector instances to be instances of Num as...
2012-10-15 Michael OrlitzkyImport Aliases and TwoTuple in the .ghci file.
2012-10-15 Michael OrlitzkyAdd the Aliases module.
2012-10-15 Michael OrlitzkyAdd a custom Show instance for TwoTuple.
2012-10-14 Michael OrlitzkyChange the type signature of fixed_point to work on...
2012-10-14 Michael OrlitzkyBump the doctest dependency.
2012-10-14 Michael OrlitzkyAdd a Vector class and make TwoTuple (and several base...
2012-10-14 Michael OrlitzkyBegin work on a simple 2-tuple type.
2012-10-12 Michael OrlitzkyMake numbers == 3000.1.* required.
2012-10-12 Michael OrlitzkyMove the .ghci file to the top-level directory.
2012-10-12 Michael OrlitzkyRemove an unused variable.
2012-09-27 Michael OrlitzkyAdd the fixed point method to Roots.Simple.
2012-09-25 Michael OrlitzkyAdd Newton's method tests.
2012-09-24 Michael OrlitzkyAdd a .ghci file.
2012-09-24 Michael OrlitzkyAdd the secant method to Roots.Simple.
2012-09-18 Michael OrlitzkyAdd Newton's method.
2012-09-11 Michael OrlitzkySplit Roots into Roots.Simple and Roots.Fast.
2012-09-09 Michael OrlitzkyAdd the numerical-analysis Haskell library.