numeric
numeric copied to clipboard
Numerical analysis in Javascript
Implement CG. http://en.wikipedia.org/wiki/Conjugate_gradient_method The implementation should be matrix-free and should allow for a matrix-free preconditioner.
Implement GMRES. http://en.wikipedia.org/wiki/Generalized_minimal_residual_method The implementation should be matrix-free and allow for a matrix-free preconditioner.
Implement MG (maybe AMG is best?) http://en.wikipedia.org/wiki/Multigrid_method
I need a systematic benchmarking tool that I can run using d8 and node to compare two versions of numeric. I need to make sure that every function in numeric...
Implement many more of the benchmarks for numeric.uncmin() from Moré et al. (1981). These benchmarks were really important to get uncmin() to actually work, and I have the feeling that...
Test numeric.solveQP() against standard test problems.
Hello there, I am relatively new to linear algebra, but I think I may have spotted a bug. When using numeric.solve(A, b), it appears b can only be a column...
Hello, everyone. My name is Velislav and I am developing a mathematical library in typescript. As good practice I use the numericjs for efficiency and output comparison with my own...