ManagedArrayFunctions<T>.ConjugateMultiply Method

Definition

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

Overload List

ConjugateMultiply(Int32, ReadOnlySpanSlice<T>, ReadOnlySpanSlice<T>, SpanSlice<T>) Multiplies the conjugate each element of a span by the corresponding element in another span.
ConjugateMultiply(Int32, ReadOnlySpan<T>, Int32, ReadOnlySpan<T>, Int32, Span<T>, Int32) Multiplies the conjugate each element of a span by the corresponding element in another span.
ConjugateMultiply<TStorage>(Int32, TStorage, TStorage, TStorage) Multiplies the conjugate of each element of an array by the corresponding element in another array.

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

Multiplies the conjugate each element of a span by the corresponding element in another span.
C#
public override void ConjugateMultiply(
	int length,
	ReadOnlySpan<T> first,
	int firstStride,
	ReadOnlySpan<T> second,
	int secondStride,
	Span<T> result,
	int resultStride
)

Parameters

length  Int32
The number of elements in the span.
first  ReadOnlySpan<T>
The span that holds the first operands that are conjugated.
firstStride  Int32
The distance between elements in first.
second  ReadOnlySpan<T>
The span that holds the second operands.
secondStride  Int32
The distance between elements in second.
result  Span<T>
The span that holds the results.
resultStride  Int32
The distance between elements in result.

See Also