python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Symbolic Calculus and Integration in Python
I am trying to numerically compute a double integral.
The issue is that (I think) I need a mix of symbolic integration and numerical integration.
The integral looks something like this:
I cannot use ...
user1868607
Votes: 0
Answers: 3
Numerical integration of a 2-dim complex function in C++?
I am trying to integrate this integral numerically (so without evaluating the primitive) in C++:
It is simpler than what it seems, in fact I know which algorithm I can implement to solve it (I consid...

Gianluca Bianco
Votes: 0
Answers: 1
Numerical implementation of n-th derivative of f(x)?
I implemented a C++ code to numerically solve the n-th derivative of a function in a point x_0:
double n_derivative( double ( *f )( double ), double x_0, int n )
{
if( n == 0 ) return f( x_0 );
e...

Gianluca Bianco
Votes: 0
Answers: 1
How do I numerically integrate a function thats a product of a lorentzian and a cosinus in Python?
I am new to stackoverflow and also quite new to Python. So, I hope to ask my question in an appropriate manner.
I am running a Python code similar to this minimal example with an example function that...
Frederik
Votes: 0
Answers: 1