back_to_list()
Library v1.1

Numerical Integral .Net Library

Library for computing integrals.

Try Integral Online



Result:

NuGet

Library can be also downloaded from nuget

Features And Algorithms

This library uses numerical calculator library so can handle same functions at input.

To compute integrals library uses ten Gauss–Legendre quadratures. Thanks to this computations are very fast and accurate.

Usage

string formula = "x ^ 3 - cos(x)";
double lowerLimit = -5d;
double upperLimit = 5d;

Integral integral = new Integral(formula, lowerLimit, upperLimit);
double result = integral.ComputeIntegral();

Example application

Alter

Download: here

Disadvantages

Infinities aren't supported in current version.

License

MIT License

Source code

Can be found on GitHub

Changelog

v1.1

  • Enhanced numerical libraries interfaces
  • Changed license to MIT
  • Sources are now available on GitHub

v1.0

Comments (0)

No comments yet

Be the first to share your thoughts!

Add comment