|  | GlobalFittedParameter Constructor | 
            Constructs a GlobalFittedParameter object from the given information.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic GlobalFittedParameter(
	int index,
	int dataSetIndex,
	double val,
	double standardErr,
	int degreesOfFreedom,
	GlobalFitParameterInfo paramInfo
)
Public Sub New ( 
	index As Integer,
	dataSetIndex As Integer,
	val As Double,
	standardErr As Double,
	degreesOfFreedom As Integer,
	paramInfo As GlobalFitParameterInfo
)
public:
GlobalFittedParameter(
	int index, 
	int dataSetIndex, 
	double val, 
	double standardErr, 
	int degreesOfFreedom, 
	GlobalFitParameterInfo^ paramInfo
)
new : 
        index : int * 
        dataSetIndex : int * 
        val : float * 
        standardErr : float * 
        degreesOfFreedom : int * 
        paramInfo : GlobalFitParameterInfo -> GlobalFittedParameterParameters
- index  Int32
- The index of the parameter in the parameter provided
            to the parameterized function being fitted.
- dataSetIndex  Int32
- The dataset index.
- val  Double
- Estimate for the parameter value.
- standardErr  Double
- The standard error.
- degreesOfFreedom  Int32
- The degrees of freedom.
- paramInfo  GlobalFitParameterInfo
- Pre-fit parameter information.
 See Also
See Also