如何在 c++ 中使用复数?

发布于 2024-10-21 18:51:48 字数 149 浏览 1 评论 0原文

如何在 C++ 代码中使用复杂变量?

我确实有单独的实部和虚部 psi_rlpsi_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚你发端 2024-10-28 18:51:48

您应该阅读 std::complex 的文档,它将为您提供这些问题以及更多问题的答案。

You should read the documentation for std::complex, it will give you answers to these questions and many more.

手心的海 2024-10-28 18:51:48

像这样的东西应该给你基本的想法:

class complex
{
public:
    double real;
    double imag;
    complex(double real, double imag): real(real), imag(imag) {};
    complex operator+(complex c) { return complex(this->real+c.real, this->imag+c.imag); };
};

int main(int argc, char* argv[])
{
    complex a(1,2);
    complex b(-3,6);
    complex c = a+b;
    return 0;
}

Something like this should give you the basic idea:

class complex
{
public:
    double real;
    double imag;
    complex(double real, double imag): real(real), imag(imag) {};
    complex operator+(complex c) { return complex(this->real+c.real, this->imag+c.imag); };
};

int main(int argc, char* argv[])
{
    complex a(1,2);
    complex b(-3,6);
    complex c = a+b;
    return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文