Create |
[Missing <summary> documentation for "T:Altaxo.Calc.LinearAlgebra.CreateVector"]
public static class CreateVector
The CreateVector type exposes the following members.
Name | Description | |
---|---|---|
DenseT(T) | Create a dense vector of T that is directly bound to the specified array. | |
DenseT(DenseVectorStorageT) | 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. | |
DenseT(Int32) | Create a dense vector of T with the given size. | |
DenseT(Int32, T) | Create a new dense vector and initialize each value using the provided value. | |
DenseT(Int32, FuncInt32, T) | Create a new dense vector and initialize each value using the provided init function. | |
DenseOfArrayT | Create a new dense vector as a copy of the given array. This new vector will be independent from the array. A new memory block will be allocated for storing the vector. | |
DenseOfEnumerableT | Create a new dense vector as a copy of the given enumerable. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
DenseOfIndexedT(Int32, IEnumerableTupleInt32, T) | Create a new dense vector as a copy of the given indexed enumerable. Keys must be provided at most once, zero is assumed if a key is omitted. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
DenseOfIndexedT(Int32, IEnumerableValueTupleInt32, T) | Create a new dense vector as a copy of the given indexed enumerable. Keys must be provided at most once, zero is assumed if a key is omitted. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
DenseOfVectorT | Create a new dense vector as a copy of the given other vector. This new vector will be independent from the other vector. A new memory block will be allocated for storing the vector. | |
RandomT(Int32) | Create a new dense vector with values sampled from the standard distribution with a system random source. | |
RandomT(Int32, IContinuousDistribution) | Create a new dense vector with values sampled from the provided random distribution. | |
RandomT(Int32, Int32) | Create a new dense vector with values sampled from the standard distribution with a system random source. | |
SameAsT(VectorT, VectorT) | Create a new vector with a type that can represent and is closest to both provided samples and the dimensions of example. | |
SameAsT(MatrixT, VectorT, Int32) | Create a new vector with a type that can represent and is closest to both provided samples. | |
SameAsT(VectorT, VectorT, Int32) | Create a new vector with a type that can represent and is closest to both provided samples. | |
SameAsT, TU(VectorTU) | Create a new vector with the same kind and dimension of the provided example. | |
SameAsT, TU(MatrixTU, Int32) | Create a new vector with the same kind of the provided example. | |
SameAsT, TU(VectorTU, Int32) | Create a new vector with the same kind of the provided example. | |
SparseT(Int32) | Create a sparse vector of T with the given size. | |
SparseT(SparseVectorStorageT) | Create a new sparse 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. | |
SparseT(Int32, T) | Create a new sparse vector and initialize each value using the provided value. | |
SparseT(Int32, FuncInt32, T) | Create a new sparse vector and initialize each value using the provided init function. | |
SparseOfArrayT | Create a new sparse vector as a copy of the given array. This new vector will be independent from the array. A new memory block will be allocated for storing the vector. | |
SparseOfEnumerableT | Create a new sparse vector as a copy of the given enumerable. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
SparseOfIndexedT(Int32, IEnumerableTupleInt32, T) | Create a new sparse vector as a copy of the given indexed enumerable. Keys must be provided at most once, zero is assumed if a key is omitted. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
SparseOfIndexedT(Int32, IEnumerableValueTupleInt32, T) | Create a new sparse vector as a copy of the given indexed enumerable. Keys must be provided at most once, zero is assumed if a key is omitted. This new vector will be independent from the enumerable. A new memory block will be allocated for storing the vector. | |
SparseOfVectorT | Create a new sparse vector as a copy of the given other vector. This new vector will be independent from the other vector. A new memory block will be allocated for storing the vector. | |
WithStorageT | Create a new vector straight from an initialized matrix storage instance. If you have an instance of a discrete storage type instead, use their direct methods instead. |