Vector<T>.ConjugateCore Method

Conjugates the elements of a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected Vector<T> ConjugateCore(
	Vector<T> result
)

Parameters

result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

Vector<T>
A vector whose elements are equal to the conjugate of the corresponding elements of this vector.

Exceptions

DimensionMismatchException

The length of result does not equal the lenght of this vector.

See Also