Vector<T>.Conjugate Method

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Conjugate() Conjugates the elements of a vector and returns the result.
Conjugate(Vector<T>) Returns the conjugate of a vector.

Conjugate

Conjugates the elements of a vector and returns the result.
C#
public virtual Vector<T> Conjugate()

Return Value

Vector<T>

Conjugate(Vector<T>)

Returns the conjugate of a vector.
C#
public static Vector<T> Conjugate(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A vector.

Return Value

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

Exceptions

ArgumentNullExceptionvector is null

See Also