JAVA编程两个复数的加减乘除_Java编程,计算复数的加减乘除和比较大小

展开全部

首先复数是不能比较大小的。

以下是62616964757a686964616fe4b893e5b19e31333335343436一个复数类,希望能帮助你public class Complex

{

private final double re;   // the real part

private final double im;   // the imaginary part

// create a new object with the given real and imaginary parts

public Complex(double real, double imag)

{

re = real;

im = imag;

}

// return a string representation of the invoking Complex object

public String toString() {

if (im == 0) return re + "";

if (re == 0) return im + "i";

if (im 

return re + " + " + im + "i";

}

// return abs/modulus/magnitude and angle/phase/argument

public double abs()   { return Math.hypot(re, im); }  // Math.sqrt(re*re + im*im)

public double phase() { return Math.atan2(im, re); }  // between -pi and pi

// return a new Complex object whose value is (this + b)

public Complex plus(Complex b) {

Complex a = this;             // invoking object

double real = a.re + b.re;

double imag = a.im + b.im;

return new Complex(real, imag);

}

/**

* return a new Complex object whose value is (this - b)

*          减法

* @param b

* @return

*/

public Complex minus(Complex b) {

Complex a = this;

double real = a.re - b.re;

double imag = a.im - b.im;

return new Complex(real, imag);

}

/**

*  return a new Complex object whose value is (this * b)

*    乘以一个复数

* @param b  被乘的复数

* @return

*/

public Complex times(Complex b) {

Complex a = this;

double real = a.re * b.re - a.im * b.im;

double imag = a.re * b.im + a.im * b.re;

return new Complex(real, imag);

}

/**

*scalar multiplication

* return a new object whose value is (this * alpha)

*                乘以一个实数

*/

public Complex times(double alpha) {

return new Complex(alpha * re, alpha * im);

}

/**

*  return a new Complex object whose value is the conjugate of this

*   共轭复数

* @return

*/

public Complex conjugate() {  return new Complex(re, -im); }

/**

*  return a new Complex object whose value is the reciprocal of this

*     倒数 a +bi 的倒数  

*   a -bi

* —————————————

*   a^2  + b ^2

*/

public Complex reciprocal()

{

double scale = re*re + im*im;

return new Complex(re / scale, -im / scale);

}

/**

*  return the real part

* @return

*/

public double re() { return re; }

/**

*  imaginary part

* @return

*/

public double im() { return im; }

/**

*  return a / b

*/

public Complex divides(Complex b)

{

Complex a = this;

return a.times(b.reciprocal());

}

// return a new Complex object whose value is the complex exponential of this

public Complex exp()

{

return new Complex(Math.exp(re) * Math.cos(im), Math.exp(re) * Math.sin(im));

}

// return a new Complex object whose value is the complex sine of this

public Complex sin()

{

return new Complex(Math.sin(re) * Math.cosh(im), Math.cos(re) * Math.sinh(im));

}

// return a new Complex object whose value is the complex cosine of this

public Complex cos()

{

return new Complex(Math.cos(re) * Math.cosh(im), -Math.sin(re) * Math.sinh(im));

}

// return a new Complex object whose value is the complex tangent of this

public Complex tan()

{

return sin().divides(cos());

}

// a static version of plus

public static Complex plus(Complex a, Complex b)

{

double real = a.re + b.re;

double imag = a.im + b.im;

Complex sum = new Complex(real, imag);

return sum;

}

// sample client for testing

public static void main(String[] args) {

Complex a = new Complex(5.0, 6.0);

Complex b = new Complex(-3.0, 4.0);

System.out.println("a            = " + a);

System.out.println("b            = " + b);

System.out.println("Re(a)        = " + a.re());

System.out.println("Im(a)        = " + a.im());

System.out.println("b + a        = " + b.plus(a));

System.out.println("a - b        = " + a.minus(b));

System.out.println("a * b        = " + a.times(b));

System.out.println("b * a        = " + b.times(a));

System.out.println("a / b        = " + a.divides(b));

System.out.println("(a / b) * b  = " + a.divides(b).times(b));

System.out.println("conj(a)      = " + a.conjugate());

System.out.println("|a|          = " + a.abs());

System.out.println("tan(a)       = " + a.tan());

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值