Matrix.Conjugate Into<T> Method
Conjugates the elements of a matrix.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A matrix whose elements are equal to the conjugate of the corresponding elements of matrix.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public static Matrix<T> ConjugateInto<T>(
this Matrix<T> matrix,
Matrix<T>? result
)
Parameters
Type Parameters
- T
Return Value
Matrix<T>A matrix whose elements are equal to the conjugate of the corresponding elements of matrix.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Matrix<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | matrix is null. |