Tagged Questions

11
votes
3answers
6k views

How can I use numpy.correlate to do autocorrelation?

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, but I don't believe the ...
7
votes
6answers
895 views

Bounding this program to determine the sum of reciprocal integers not containing zero

Let A denote the set of positive integers whose decimal representation does not contain the digit 0. The sum of the reciprocals of the elements in A is known to be 23.10345. Ex. ...
6
votes
5answers
176 views

How do I calculate the “difference” between two sequences of points?

I have two sequences of length n and m. Each is a sequence of points of the form (x,y) and represent curves in an image. I need to find how different (or similar) these sequences are given that fact ...
6
votes
11answers
318 views

Function approximation

I have a function, P(x0, x1, ..., xn) that takes 100 integers as input and gives as output an integer. P is a slow function to evaluate(it can range from 30 seconds to a couple of minutes). I need ...
5
votes
4answers
2k views

How to find a binary logarithm very fast? (O(1) at best)

Is there any very fast method to find a binary logarithm of an integer number? For example, given a number x=52656145834278593348959013841835216159447547700274555627155488768 such algorithm must find ...
4
votes
4answers
114 views

Comparing Root-finding (of a function) algorithms in Python

I would like to compare different methods of finding roots of functions in python (like Newton's methods or other simple calc based methods). I don't think I will have too much trouble writing the ...
4
votes
5answers
576 views

efficiently determining if a polynomial has a root in the interval [0,T]

I have polynomials of nontrivial degree (4+) and need to robustly and efficiently determine whether or not they have a root in the interval [0,T]. The precise location or number of roots don't concern ...
4
votes
3answers
549 views

positive semi-definite matrices and numerical stability?

i'm trying to do factor analysis for a co-occurrence matrix(C) , which is computed from the term-document matrix(TD) as follows: C=TD*TD' In theory C should be positive semi-definite , but it isn't ...
3
votes
1answer
306 views

Limiting Number of Decimal Places in GWT?

In pure Java, I would normally have a function like the one below for limiting the number of decimal places to decimalCount for a given number value. However, according to the GWT docs, "GWT does not ...
3
votes
6answers
230 views

Need pow(-1,1.2) to be 1

I am using math.h with GCC and GSL. I was wondering how to get this to evaluate? I was hoping that the pow function would recognize pow(-1,1.2) as ((-1)^6)^(1/5). But it doesn't. Does anybody know ...
3
votes
3answers
699 views

What is a simple way to find real roots of a (cubic) polynomial?

this seems like an obvious question to me, but I couldn't find it anywhere on SO. I have a cubic polynomial and I need to find real roots of the function. What is THE way of doing this? I have found ...
3
votes
1answer
71 views

Is there a hyperreal datatype implementation for doing computations in non-standard analysis?

Non-standard mathematical analysis extends the real number line to include "hyperreals" -- infinitesimals and infinite numbers. Is there (specification for an) implementation of a data type to ...
3
votes
8answers
4k 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 derivative of a function. ...
2
votes
2answers
44 views

Numerical library for minimization of a multidimensional function on windows

We need to numerically minimize a function that takes a three dimensional vector as input. The function is smooth, so a gradient algorithm would be a good choice. However, I am used to GSL which ...
2
votes
1answer
175 views

Variable radius Gaussian blur, approximating the kernel

I'm writing a Gaussian blur with variable radius (standard deviation), i.e. each pixel of the image is convolved using a different kernel. The standard techniques to compute Gaussian blur don't work ...
2
votes
3answers
375 views

Runge-Kutta. Solving initial value problem that isn't easily seperated

We are supposed to write a program to solve the following initial value problem numerically using 4th order Runge-Kutta. That algorithm isn't a problem and I can post my solution when I finish. The ...
2
votes
1answer
162 views

Why do these slightly different methods for finding roots yield different results?

Consider these two slightly different methods for computing fifth roots: (define (fifth-root-right x) (fixed-point-of-transform (lambda (y) (/ x (expt y 4))) (repeated ...
2
votes
1answer
442 views

good numerical solution for LDA transformation

I'm computing an LDA (linear discriminant analysis) transform, for an application I'm working on, and I've been following these notes (starting at page 36, especially slide 47 in green). I'm doing ...
2
votes
8answers
1k 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) = F(B) = F(C) = F(D) ...
1
vote
1answer
113 views

Finding the elbow point of a curve in a stable way?

I am aware of the existence of this, and this on this topic. However, I would like to finalize on an actual implementation in Python this time. My only problem is that the elbow point seems to be ...
1
vote
3answers
178 views

Closed form cubic root finder implementation

I'm looking for a non-iterative function that finds the real roots of cubic polynomials. So, an implementation of something like this. I could write it myself of course, but if someone already has an ...
1
vote
4answers
169 views

Numerical precision in simple financial computations

I did a course at university that explained how (amongst other things) to order your mathematical execution to maximize precision and reduce the risk of rounding errors in a finite precision ...
0
votes
2answers
66 views

LSODA to dll - Fortran (F77) to dll to call from C#

a little question in which I hope you can help me. (To make my life simpler) One of the most respected numerical solvers for differential equations is LSODA, however it is written in Fortran... ( ...
0
votes
1answer
35 views

Will the number of control points always be 2 more than the number of fit points?

I am wondering if the number of control points will always be 2 more than the number of fit points. Specially for cubic spline.
0
votes
1answer
77 views

Computing Romberg integration using java

How would approximate the following integral using Romberg Integration, min:1, max:1.6, integral (2x)/((x^2)-4) Also computing the Romberg Table until |R_n-1,n-1 - R_n,n| < 10^-8.
0
votes
0answers
19 views

need help understanding Apache Commons Math BracketFinder

I will start off by saying that this feels like it should be easy... but it's not entirely obvious to me. I am trying to use the BrentOptimizer to find local minima and maxima of a function. I have ...
0
votes
2answers
169 views

Modifying C implementation of rk4 method

My problem is, frankly, that I'm unsure how this works. I need to modify the double f() function to solve an arbitrary differential equation d2θ/dt2 = −ω2sinθ, but as it is I am unsure how to ...
0
votes
4answers
308 views

Multivariate Bisection Method

I need an algorithm to perform a 2D bisection method for solving a 2x2 non-linear problem. Example: two equations f(x,y)=0 and g(x,y)=0 which I want to solve somultaneously. I have very familiar with ...
0
votes
5answers
693 views

Java library for simple numerical approximation

I need a Java library for numerical approximation. Nothing too complex. Just something that solves the following problem for example: epsilon = f(x) + y + z; find x such that epsilon gets close to ...
-1
votes
1answer
85 views

differentiation in matlab

i need to find acceleration of an object the formula for that given in text is a = d^2(L)/d(T)^2 , where L= length and T= time i calculated this in matlab by using this equation a = ...