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 ...
8
votes
9answers
877 views
Generating digits of square root of 2
I want generate the digits of square root of two to a very large extent say about 3 million digits.
I am aware of Newton-raphson method but I don't have much clue how to implement the same in C or ...
5
votes
3answers
196 views
What is the numerical method used in this implementation of IRR?
The ActiveState Recipes site has a function implementing Internal Rate of Return in Python:
def irr(cashflows, iterations=100):
"""The IRR or Internal Rate of Return is the annualized effective
...
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
2answers
145 views
Newtons Method in Python
I'm writing a program in python that will solve for zeros using newtons method. I finished writing the rough version of it, then realized a couple different things and was wondering if I need to ...
3
votes
1answer
69 views
Runge-Kutta and Reusing Datapoints
I am trying to implement the fourth order Runge-Kutta method for solving a first order ODE in Python i.e. dy/dx = f(x,y). I understand how the method works, but am trying to write an efficient ...
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
350 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 ...
2
votes
2answers
242 views
Python+Scipy+Integration: dealing with precision errors in functions with spikes
I am trying to use scipy.integrate.quad to integrate a function over a very large range (0..10,000). The function is zero over most of its range but has a spike in a very small range (e.g. ...
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
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 ...
1
vote
6answers
2k 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 numerical integration ...
0
votes
3answers
35 views
python: least-squares estimation?
I know how to implement least-squares with elementary matrix decomposition and other operations, but how can I do it in Python? (I've never tried to use matrices in Python)
(clarification edit to ...
0
votes
4answers
315 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, ...