Contains methods for finding roots and extrema.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static class FunctionMath
Public NotInheritable Class FunctionMath
public ref class FunctionMath abstract sealed

Members

      
 All Members  Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
FindMinimum(Function<(Of <(Double, Double>)>), Interval)
Minimizes a function on a given interval.
FindMinimum(Function<(Of <(Double, Double>)>), Double)
Minimizes a function in the vicinity of a given point.
FindMinimum(Function<(Of <(array<Double>[]()[], Double>)>), array<Double>[]()[])
Minimizes a function on a multi-dimensional space in the vicinity of a given point.
FindZero(Function<(Of <(Double, Double>)>), Interval)
Isolates a root within a given interval.
FindZero(Function<(Of <(Double, Double>)>), Double)
Isolates a root in the vicinity of a given point.
Integrate(Function<(Of <(Double, Double>)>), Interval)
Evaluates a definite integral.
Integrate(Function<(Of <(Double, Double>)>), Interval, EvaluationSettings)
Evaluates a definite integral with the given evaluation settings.

Inheritance Hierarchy

System..::.Object
  Meta.Numerics.Functions..::.FunctionMath

See Also