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 ...
3
votes
2answers
1k views

Implementing tridiagonal matrix algorithm (TDMA) with NumPy

I'm implementing TDMA in Python using NumPy. The tridiagonal matrix is stored in three arrays: a = array([...]) b = array([...]) c = array([...]) I'd like to calculate alpha-coefficients ...
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
3answers
348 views

Broadcasting a python function on to numpy arrays

Let's say we have a particularly simple function like import scipy as sp def func(x, y): return x + y This function evidently works for several builtin python datatypes of x and y like string, ...
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 ...
1
vote
2answers
59 views

Finding the smoothest 15% of a curve

What would be the best way to find the smoothest 15% of a curve similar to the one below? I need to know the beginning and ending x coordinates. I have thought about using a derivative function, ...
1
vote
2answers
377 views

Methods for quickly calculating standard deviation of large number set in Numpy

What's the best(fastest) way to do this? This generates what I believe is the correct answer, but obviously at N = 10e6 it is painfully slow. I think I need to keep the Xi values so I can correctly ...
0
votes
4answers
312 views

taking log of very small values using numpy/scipy in Python

I have an Nx1 array that corresponds to a probability distribution, i.e. the sum of the elements sums to 1. This is represented as a regular numpy array. Since N might be relatively large, e.g. 10 ...
0
votes
1answer
618 views

Scipy optimize.curve_fit sometimes won't converge

I'm trying to use numpy.optimize.curve_fit to estimate the frequency and phase of an on/off sequence. This is the code I'm using: from numpy import * from scipy import optimize row = array([0.0, ...