Transformed Parameter<T> Constructor
Constructs a new TransformedParameter<T> object.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public TransformedParameter(
string name,
IVector? variable,
T value,
T standardError,
ContinuousDistribution? distribution,
Func<T, T> transform,
Func<T, T> dTransform
)
Parameters
- name String
- The name of the parameter.
- variable IVector
- The dependent variable associated with this parameter.
- value T
- The estimated value of the parameter.
- standardError T
- The standard error of the estimate.
- distribution ContinuousDistribution
- A ContinuousDistribution object that specifies the distribution of the parameter.
- transform Func<T, T>
- A delegate that represents the transformation.
- dTransform Func<T, T>
- A delegate that represents the derivative of the transformation.