| 
            
              FiniteDifferences Constructor (Int32, Int32, Double)
             | 
          
        
          
    Namespace: 
   Accord.Math.Differentiation
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic FiniteDifferences(
	int variables,
	int order,
	double stepSize
)
Public Sub New ( 
	variables As Integer,
	order As Integer,
	stepSize As Double
)
 Request Example
		View SourceParameters
- variables
 - Type: SystemInt32
The number of free parameters in the function. - order
 - Type: SystemInt32
The derivative order that should be obtained. Default is 1. - stepSize
 - Type: SystemDouble
The relative step size used to approximate the derivatives. Default is 0.01. 
See Also