====== Conjugate ======
----
====Description====
* ''Conjugate'' replaces all complex numbers in expression by their complex conjugations
====Examples====
println Conjugate >> 'a + I*b'.t
> a - I*b
println Conjugate >> '(a + I*b)*(c - I*d)'.t
> (a - I*b)*(c + I*d)
====See also====
* Related guides: [[documentation:guide:applying_and_manipulating_transformations]], [[documentation:guide:list_of_transformations]]
* JavaDocs: [[http://api.redberry.cc/redberry/1.1.9/java-api/cc/redberry/core/transformations/ComplexConjugateTransformation.html|ComplexConjugateTransformation]]
* Source code: [[https://bitbucket.org/redberry/redberry/src/tip/core/src/main/java/cc/redberry/core/transformations/ComplexConjugateTransformation.java|ComplexConjugateTransformation.java]]