Class VectorValue
Represents values consisting of a vector of numbers in the evaluation of DecisionModels.
Inherited Members
Namespace: Quantellia.WMServer.DecisionModeler.ValueTypes
Assembly: WMServer.dll
Syntax
public class VectorValue : CollectionElementValue
Remarks
This class wraps around the Vector class from the MathDotNet Numerics package. It is compatible with Vector and Matrix operations from that package.
Constructors
VectorValue()
Declaration
public VectorValue()
VectorValue(Vector<double>)
Declaration
public VectorValue(Vector<double> val)
Parameters
Type | Name | Description |
---|---|---|
Vector<double> | val |
Properties
Value
Gets the Vector object that holds the value of this object.
Declaration
public Vector<double> Value { get; set; }
Property Value
Type | Description |
---|---|
Vector<double> |