numerical-integration
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?[详细]
2023-04-12 17:02 分类:问答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?\"[详细]
2023-04-11 04:58 分类:问答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.[详细]
2023-03-28 16:13 分类:问答Trapz gives negative result: why?
I a开发者_开发技巧m 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?[详细]
2023-03-26 02:51 分类:问答Use scipy.integrate.quad from within a cdef statement in Cython?
I am trying to speed up my Python by translating it into Cython. It uses the function scipy.integrate.quad, which requires a python callable as one of its arguments. Is there any way 开发者_StackOverf[详细]
2023-03-23 06:27 分类:问答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.)[详细]
2023-03-06 18:47 分类:问答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[详细]
2023-03-03 19:56 分类:问答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 sni[详细]
2023-02-25 02:03 分类:问答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\' whic[详细]
2023-02-13 15:45 分类:问答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 a开发者_Python百科rea boun[详细]
2023-01-25 08:05 分类:问答