3
votes
8answers
492 views
implementing the derivative in C/C++
How is derivative of a f(x) is typically calculated programmatically to ensure maximum accuracy? I am implementing the Newton-Raphson method and it requires taking of the derivativ …
2
votes
4answers
142 views
std::pow gives a wrong approximation for fractional exponents
Here is what I mean trying to do
double x=1.1402
double pow=1/3;
std::pow(x,pow) -1;
result is 0 but I expect 0.4465
the equation is (1 + x) ^3= 1.1402, find x.
2
votes
4answers
367 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 ar …
-2
votes
2answers
80 views
Newton method, numerical methods [closed]
When the value > 0, intersection of its tangent line and x-axis will help to bring the value down; when the value < 0, it's the opposite.
thinking about why it's a certain thin …
1
vote
4answers
203 views
How to make topographic map from sparse sampling data?
I need to make a topographic map of a terrain for which I have only fairly sparse samples of (x, y, altitude) data. Obviously I can't make a completely accurate map, but …
0
votes
8answers
273 views
Algorithm for multidimensional optimization / root-finding / something
I have five values, A, B, C, D and E.
Given the constraint A + B + C + D + E = 1, and five functions F(A), F(B), F(C), F(D), F(E), I need to solve for A through E such that F(A) …
4
votes
2answers
667 views
How can I use numpy.correlate to do autocorrelation?
Hi,
I need to do auto-correlation of a set of numbers, which as I understand it is just the correlation of the set with itself.
I've tried it using numpy's correlate function, b …
1
vote
5answers
475 views
Can someone explain why scipy.integrate.quad gives different results for equally long ranges while integrating sin(X)?
I am trying to numerically integrate an arbitrary (known when I code) function in my program
using numerical integration methods. I am using Python 2.5.2 along with SciPy's numeric …
