Note: This API is now obsolete.
Constructs a new dense vector with the specified
components.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Version4x.Net40 (in Extreme.Numerics.Version4x.Net40.dll) Version: 4.2.11333.0 (5.0.12317.0)
[ObsoleteAttribute("Use the corresponding Vector.Create() method instead.")]
public SingleDenseVector(
params float[] values
)
<ObsoleteAttribute("Use the corresponding Vector.Create() method instead.")>
Public Sub New (
ParamArray values As Single()
)
public:
[ObsoleteAttribute(L"Use the corresponding Vector.Create() method instead.")]
SingleDenseVector(
... array<float>^ values
)
[<ObsoleteAttribute("Use the corresponding Vector.Create() method instead.")>]
new :
values : float32[] -> SingleDenseVector
Parameters
- values
- Type: SystemSingle
A variable length list of
float parameters specifying the components of the
vector, or an array of Single values.
The length of the new vector is equal to the length of
values. The components are copied to a new array.
Numerical Libraries
Obsolete (compiler warning) in 5.x
Obsolete (compiler warning) in 4.x
Reference