Skip to contents

Symbolic element-wise complex conjugate operation for ComplexLazyTensor objects or default element-wise complex conjugate operation otherwise.

Usage

Conj(z)

Arguments

z

input for Conj.default() or Conj.LazyTensor().

Value

See value of Conj.default() or Conj.LazyTensor().

Details

If z is a LazyTensor, see Conj.LazyTensor(), else see Conj.default().

Author

Chloe Serre-Combe, Amelie Vernay

Examples

if (FALSE) {
# R base operation
Conj(1)
Conj(1+1i)
# LazyTensor symbolic element-wise complex conjugate
z <- matrix(1i^ (-6:5), nrow = 4)                     # complex 4x3 matrix
z_i <- LazyTensor(z, index = 'i', is_complex = TRUE)  # ComplexLazyTensor
Conj_z_i <- Conj(z_i)                                 # symbolic matrix
}