Table of Contents
Conjugate
Matrix.Conjugate($M$) takes a matrix and returns it with every entry replaced by its complex conjugate.
Example
Input
- Example.Quanty
A = Matrix.New({{1,1+2*I},{3,4+I}}) B = Matrix.Conjugate(A) print(B)
Result
{ { 1 , 1 - 2 I } , { 3 , 4 - 1 I } }