Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
440 views

How to overcome singularities in numerical integration (in Matlab or Mathematica)

I want to numerically integrate the following: where and a, b and β are constants which for simplicity, can all be set to 1. Neither Matlab using dblquad, nor Mathematica using NIntegrate can ...
5
votes
1answer
218 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
1answer
402 views

Help with symplectic integrators

I'm trying to develop a physics simulation and I want to implement a fourth-order symplectic integration method. The problem is that I must be getting the math wrong, since my simulation is not ...
5
votes
5answers
543 views

Calculating the area underneath a mathematical function

I have a range of data that I have approximated using a polynomial of degree 2 in Python. I want to calculate the area underneath this polynomial between 0 and 1. Is there a calculus, or similar ...
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 ...
4
votes
2answers
314 views

How do I properly setup numerical integration in MATLAB?

I'm looking to integrate this expression: However I seem to be having problems setting up the function. As outlined in this MATLAB explanation, I've defined a separate function named 'NDfx.m' ...
2
votes
2answers
494 views

Looking for Python package for numerical integration over a tessellated domain

I was wondering if anyone knew of a numpy/scipy based python package to numerically integrate a complicated numerical function over a tessellated domain (in my specific case, a 2D domain bounded by a ...
2
votes
1answer
141 views

A possible bug in odeint <-> interp1d interplay?

I'm relatively new to python and scipy, being a convert from MATLAB. I was doing a quick test of the odeint function in scipy.integrate, and came across this potential bug. Consider the following ...
2
votes
3answers
352 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 ...
2
votes
3answers
2k views

How do I do numerical integration of a vector in MATLAB?

I have a vector of 358 numbers. I'd like to make a numerical integration of this vector, but I don't know the function of this one. I found that we can use trapz or quad, but i don't really ...
2
votes
1answer
295 views

how to do a program to solve three functions using improve euler's method?

I was given three functions: dx/dt = a(y-x) dy/dt = x(b-z)-y dz/dt = xy-cz All the variables are set by the user. I can do it if its just the basic one-equation problem. But now, i need to make a ...
1
vote
0answers
50 views

performance of adaptIntegrate vs. integrate

I'd like to perform a numerical integration in one dimension, where the integrand is vector-valued. integrate() only allows scalar integrands, thus I would need to call it several times. The cubature ...
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 ...
1
vote
0answers
66 views

Vectorized adaptive quadrature of vector-valued function

I'm looking for a super duper numerical quadrature function. It should have the following three properties: Adaptive - it automatically adjusts the density of sampling points to fit the integrand. ...
1
vote
1answer
217 views

Improper integral calculation using numerical intergration

I'm interested in calculation of Improper Integral for a function. Particularly it's a Gauss Integral. Using a numerical integration does make sense for a definite integrals but how should I deal ...
1
vote
3answers
415 views

MATLAB: Question about minimizing a function containing an integral

Does anyone know how to minimize a function containing an integral in MATLAB? The function looks like this: L = Int(t=0,t=T)[(AR-x)dt], A is a system parameter and R and x are related through: ...
0
votes
0answers
25 views

Numerical Integration

Generally speaking when you are numerically evaluating and integral, say in MATLAB do I just pick a large number for the bounds or is there a way to tell MATLAB to "take the limit?" I am assuming ...
0
votes
1answer
277 views

Can this integral be done numerically in either Matlab or Mathematica?

I want to be able to do the integral below completely numerically. where , and , and are constants which for simplicity, can all be set to 1. The integral over x can be done analytically by ...
0
votes
2answers
149 views

Trapz gives negative result: why?

I am trying to numerically integrate a Generalized Normal Distribution. I expect the area under it to be 1. What I get is -1. Why is it like this? mu=0; alpha=0.5; beta=2; x=-2:0.01:2; densityGG = ...
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 ...