Tagged Questions
11
votes
4answers
167 views
Which numerical library to use for porting from Matlab to C++?
I am currently prototyping some algorithms in Matlab that rely on matrix, DSP, statistics and image analysis functionality.
Some examples of what I may need:
eigenvectors
convolution in 2D and 3D
...
5
votes
4answers
1k views
How to do numerical integration with quantum harmonic oscillator wavefunction?
How to do numerical integration (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand are 1d quantum ...
1
vote
1answer
87 views
Numerical pitfalls without extended precision FPUs
Monniaux's excellent article, "The Pitfalls of Verifying Floating Point Arithmetic", gives examples of unexpected numerical behavior. However, most of the examples depend on extended precision FPUs or ...
1
vote
4answers
745 views
LU Decomposition from Numerical Recipes not working; what am I doing wrong?
I've literally copied and pasted from the supplied source code for Numerical Recipes for C for in-place LU Matrix Decomposition, problem is its not working.
I'm sure I'm doing something stupid but ...