public Complexs Minus(Complexs x) { Complexs NewY; NewY.im = im - x.im; NewY.re = re - x.re; return(NewY); }
public Complexs Multi(Complexs x) { Complexs y; y.im = re * x.im + im * x.re; y.re = re * x.re - im * x.im; return(y); }
public Complexs Plus(Complexs x) { Complexs y; y.im = im + x.im; y.re = re + x.re; return(y); }