Matrix<T>.ConjugateCore Method

Conjugates the elements of a matrix.

Definition

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

Parameters

result  Matrix<T>
The matrix that is to hold the result. May be null.

Return Value

Matrix<T>
A matrix whose elements are equal to the conjugate of the corresponding elements of this matrix.

Exceptions

DimensionMismatchException

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

See Also