ParameterVector<T> Constructor

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7

Overload List

ParameterVector<T>(SerializationInfo, StreamingContext)

Constructs a new vector from serialization values.
C#
protected ParameterVector(
	SerializationInfo info,
	StreamingContext context
)

Parameters

info  SerializationInfo
The values needed to serialize or deserialize the Vector<T>.
context  StreamingContext
The source and destination of a given serialized stream.

Remarks

This constructor is called internally by the .NET framework when a Vector<T> is deserialized.

ParameterVector<T>(IEnumerable<String>, Vector<T>, SymmetricMatrix<T>, ContinuousDistribution)

Initializes a new instance of the ParameterVector<T> class
C#
public ParameterVector(
	IEnumerable<string> names,
	Vector<T> values,
	SymmetricMatrix<T> covarianceMatrix,
	ContinuousDistribution distribution
)

Parameters

names  IEnumerable<String>
 
values  Vector<T>
 
covarianceMatrix  SymmetricMatrix<T>
 
distribution  ContinuousDistribution
 

See Also