SparseLinearAlgebraOperations<T>.GatherAndZero Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GatherAndZero(Int32, Int32, Span<T>, Int32, Span<T>, ReadOnlySpan<Int32>) Gathers specific elements of a dense vector into a sparse vector and zeros the original components.
GatherAndZero(Int32, Int32, Span<Complex<T>>, Int32, Span<Complex<T>>, ReadOnlySpan<Int32>) Gathers specific elements of a dense vector into a sparse vector and zeros the original components.

GatherAndZero(Int32, Int32, Span<T>, Int32, Span<T>, ReadOnlySpan<Int32>)

Gathers specific elements of a dense vector into a sparse vector and zeros the original components.
C#
public virtual void GatherAndZero(
	int n,
	int m,
	Span<T> y,
	int yStride,
	Span<T> x,
	ReadOnlySpan<int> indx
)

Parameters

n  Int32
The number of elements in the vectors x and y.
m  Int32
The length of the vector y.
y  Span<T>
A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.
yStride  Int32
The distance between successive elements in y.
x  Span<T>
A reference to a one-dimensional array containing the elements of the vector x.
indx  ReadOnlySpan<Int32>
Integer array of component indices.

Implements

ISparseLinearAlgebraOperations<T>.GatherAndZero(Int32, Int32, Span<T>, Int32, Span<T>, ReadOnlySpan<Int32>)

GatherAndZero(Int32, Int32, Span<Complex<T>>, Int32, Span<Complex<T>>, ReadOnlySpan<Int32>)

Gathers specific elements of a dense vector into a sparse vector and zeros the original components.
C#
public virtual void GatherAndZero(
	int n,
	int m,
	Span<Complex<T>> y,
	int yStride,
	Span<Complex<T>> x,
	ReadOnlySpan<int> indx
)

Parameters

n  Int32
The number of elements in the vectors x and y.
m  Int32
The length of the vector y.
y  Span<Complex<T>>
A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.
yStride  Int32
The distance between successive elements in y.
x  Span<Complex<T>>
A reference to a one-dimensional array containing the elements of the vector x.
indx  ReadOnlySpan<Int32>
Integer array of component indices.

Implements

ISparseLinearAlgebraOperations<T>.GatherAndZero(Int32, Int32, Span<T>, Int32, Span<T>, ReadOnlySpan<Int32>)

See Also