Cast Eigen::MatrixXd to Eigen::MatrixXf

后端 未结 1 1588
攒了一身酷
攒了一身酷 2021-02-03 17:55

I am using Eigen on a C++ program.

I wonder if there is a way to cast from Eigen::MatrixXd to Eigen::MatrixXf.
static_cast

1条回答
  •  别那么骄傲
    2021-02-03 18:34

    Try this:

    Eigen::MatrixXd d;                       // Matrix of doubles.
    Eigen::MatrixXf f = d.cast  ();   // Matrix of floats.
    

    0 讨论(0)
提交回复
热议问题