setreal {cmvnorm} | R Documentation |
Manipulate real or imaginary components of an object
Description
Manipulate real or imaginary components of an object
Usage
Im(x) <- value
Re(x) <- value
Arguments
x |
Complex-valued object |
value |
Real-valued object |
Author(s)
Robin K. S. Hankin
Examples
A <- matrix(c(1,0.1i,-0.1i,1),2,2)
Im(A) <- Im(A)*3
Re(A) <- matrix(c(5,2,2,5),2,2)
[Package cmvnorm version 1.0-7 Index]