Symbolic element-wise complex conjugate operation for
ComplexLazyTensor
objects or default element-wise complex conjugate
operation otherwise.
Arguments
- z
input for
Conj.default()
orConj.LazyTensor()
.
Value
See value of Conj.default()
or Conj.LazyTensor()
.
Details
If z
is a LazyTensor
, see Conj.LazyTensor()
, else
see Conj.default()
.
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
}