Tagged Questions
5
votes
1answer
216 views
Solving a delay differential equation (DDE) system constrained to give nonnegative solutions
In MATLAB, ode45 has a parameter called NonNegative which constrains the solutions to be nonnegative. They even wrote a paper about how this method works and how it's not something as stupid as just ...
2
votes
3answers
349 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
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
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, ...