如何在 c++ 中使用复数?
如何在 C++ 代码中使用复杂变量?
我确实有单独的实部和虚部 psi_rl
和 psi_im
。现在我必须写 psi = psi_rl + i psi_im
。我将如何使用一个变量来实现这一点?
How can I use a complex variable in C++ code?
I do have the separate real and imaginary parts psi_rl
and psi_im
. Now I have to write psi = psi_rl + i psi_im
. How would I use one variable for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该阅读 std::complex 的文档,它将为您提供这些问题以及更多问题的答案。
You should read the documentation for
std::complex
, it will give you answers to these questions and many more.像这样的东西应该给你基本的想法:
Something like this should give you the basic idea: