Click or drag to resize

CreateVectorDenseT(DenseVectorStorageT) Method

Create a new dense vector straight from an initialized vector storage instance. The storage is used directly without copying. Intended for advanced scenarios where you're working directly with storage for performance or interop reasons.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Vector<T> Dense<T>(
	DenseVectorStorage<T> storage
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

storage  DenseVectorStorageT
The storage backing the vector.

Type Parameters

T
The element type of the vector.

Return Value

VectorT
The created vector.
See Also