Vector<T>.Conjugate Method

Definition

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

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

ArgumentNullException

vector is null.

See Also