将sqrt(-1)乘以c ++和Armadillo中的矩阵

时间:2015-05-29 08:26:48

标签: c++ armadillo

我是c ++的新手,并编写了以下程序:

#include <iostream>
#include <armadillo>

using namespace std;
using namespace arma;

mat tens(mat A,mat B,mat C){
    mat E = kron(kron(A,B),C);
    return E;
}

mat ii(2,2,fill::eye);// make a 2*2 identify matrix

mat ee = ii.col(0); // extract a column vector
mat gg = ii.col(1);

mat a1=tens(ee,gg,gg);
mat a2=tens(gg,ee,gg);
mat a3=tens(gg,gg,ee);
mat s23=a3*a2.t();
mat H=a1*a1.t()+a2*a2.t()+a2*a1.t()+a1*a2.t();

mat rhot(float t,mat y){ 
    return sqrt(-1)*(-H*y+y*H)+0.5*(2*s23*y*s23.t()-s23.t()*s23*y-  y*s23.t()*s23);
}

int rk4(mat y,float dt,float tmax){
    float t = 0.;
    mat ydot1, ydot2, ydot3, ydot4;
    while (t < tmax)
    {
        ydot1 = rhot(t, y);
        ydot2 = rhot(t+0.5*dt, y+0.5*dt*ydot1);
        ydot3 = rhot(t+0.5*dt, y+0.5*dt*ydot2);
        ydot4 = rhot(t+dt, y+dt*ydot3);
        cout<< t<< " "<< a3.t()*y*a3 <<endl;
        y=y+ (dt/6.0)*(ydot1 + 2.0*ydot2 + 2.0*ydot3 + ydot4);
        t=t+ dt;
    }
    return 0;
}

int main()//int argc, char** argv)
{
    rk4(tens(ee,gg,gg)*tens(ee,gg,gg).t(),0.01,4.);
    return 0;
}

问题在于波纹管功能的sqrt(-1):

 mat rhot(float t,mat y){ 
    return sqrt(-1)*(-H*y+y*H).....

另一方面,我想知道如何将sqrt(-1)乘以Armadillo中的矩阵。

1 个答案:

答案 0 :(得分:2)

sqrt(-1)无法表示为double(对实数进行建模)。 sqrt(-1)的结果是NaN(不是数字),而不是您期望的复数。

要使犰狳使用复数,请在任何地方使用cx_mat而不是mat,而不是sqrt(-1),请使用std::complex<double>(0, 1)或者,如果您可以依赖C + + 14,using namespace std::literals;1i