Namespaces
MathNet.Numerics
MathNet.Numerics.Differentiation
MathNet.Numerics.Distributions
MathNet.Numerics.Financial
MathNet.Numerics.IntegralTransforms
MathNet.Numerics.Integration
MathNet.Numerics.Interpolation
MathNet.Numerics.LinearAlgebra
MathNet.Numerics.LinearAlgebra.Complex
MathNet.Numerics.LinearAlgebra.Complex.Solvers
MathNet.Numerics.LinearAlgebra.Complex32
MathNet.Numerics.LinearAlgebra.Complex32.Solvers
MathNet.Numerics.LinearAlgebra.Double
MathNet.Numerics.LinearAlgebra.Double.Solvers
MathNet.Numerics.LinearAlgebra.Factorization
MathNet.Numerics.LinearAlgebra.Single
MathNet.Numerics.LinearAlgebra.Single.Solvers
MathNet.Numerics.LinearAlgebra.Solvers
MathNet.Numerics.LinearAlgebra.Storage
MathNet.Numerics.LinearRegression
MathNet.Numerics.OdeSolvers
MathNet.Numerics.Optimization
MathNet.Numerics.Optimization.LineSearch
MathNet.Numerics.Optimization.ObjectiveFunctions
MathNet.Numerics.Optimization.TrustRegion
MathNet.Numerics.Providers
MathNet.Numerics.Providers.FourierTransform
MathNet.Numerics.Providers.LinearAlgebra
MathNet.Numerics.Providers.SparseSolver
MathNet.Numerics.Random
MathNet.Numerics.RootFinding
MathNet.Numerics.Statistics
MathNet.Numerics.Statistics.Mcmc
Types in MathNet.Numerics.Integration
DoubleExponentialTransformation
GaussKronrodRule
GaussLegendreRule
NewtonCotesTrapeziumRule
SimpsonRule
Type
GaussKronrodRule
Namespace
MathNet.Numerics.Integration
Constructors
GaussKronrodRule
Static Functions
ContourIntegrate
Integrate
Methods
Equals
GetHashCode
GetType
ToString
Properties
GaussWeights
KronrodAbscissas
KronrodWeights
Order
Public Constructors
GaussKronrodRule
(
int
order)
Public Static Functions
Complex
ContourIntegrate
(
Func<double, Complex>
f,
double
intervalBegin,
double
intervalEnd,
Double&
error,
Double&
L1Norm,
double
targetRelativeError,
int
maximumDepth,
int
order)
double
Integrate
(
Func<double, double>
f,
double
intervalBegin,
double
intervalEnd,
Double&
error,
Double&
L1Norm,
double
targetRelativeError,
int
maximumDepth,
int
order)
Public Methods
bool
Equals
(
object
obj)
int
GetHashCode
()
Type
GetType
()
string
ToString
()
Public Properties
Double[]
GaussWeights
get;
Getter that returns a clone of the array containing the Gauss weights.
Double[]
KronrodAbscissas
get;
Getter that returns a clone of the array containing the Kronrod abscissas.
Double[]
KronrodWeights
get;
Getter that returns a clone of the array containing the Kronrod weights.
int
Order
get;
Getter for the order.