C# Class Artemis.Engine.Maths.Integrator

Datei anzeigen Open project: ArtemisEngine/Artemis-Engine

Public Methods

Method Description
Simpsons ( double>.Func f, double a, double b, int n ) : double

Integrate the given function f between the given limits a and b using Simpson's method with n steps.

Method Details

Simpsons() public static method

Integrate the given function f between the given limits a and b using Simpson's method with n steps.
public static Simpsons ( double>.Func f, double a, double b, int n ) : double
f double>.Func
a double
b double
n int
return double