Tagged Questions
5
votes
1answer
217 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 ...
5
votes
4answers
1k 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 are 1d quantum ...
2
votes
3answers
351 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
2answers
186 views
Numerical Integration of area defined by set of coordinates?
Suppose you have a general shape defined by a bunch of coordinate points that form something that looks like a circle, ellipse, or general closed curve - how do you find the area bounded by these ...
1
vote
1answer
82 views
Numerical integration of a function known only through data points - AS3 Preferred
Is there any library or open source function that approximate the area under a line that is described by some of its values taken at irregular intervals?
Action Script would be preferred but Java ...
0
votes
1answer
118 views
Numerical integration of a function with values known at a given point set (finite and discrete) over an area bounded by discrete points?
Let D be the area bounded by a series of points {x_i,y_i} (1<=i<=N).(The area need not to be convex and the points are supposed to go along the boundary curve.)
Let f be a function defined on D ...