关于java中复数值的问题
我们知道复数的一般形式是这样的: z=a+i*b
,其中 i 为 sqrt(-1)
。
我有一个关于如何用 Java 表达这一点的问题?
We know that the general form of complex numbers is like this:z=a+i*b
, where i is sqrt(-1)
.
I have a question about how to express this in Java ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该库提供了您需要的任何复数:
http://commons.apache.org/math/
示例:
http://commons.apache.org/math/userguide/complex.html
This library provides anything you would need with complex numbers:
http://commons.apache.org/math/
Example:
http://commons.apache.org/math/userguide/complex.html