Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.8k views
in Technique[技术] by (71.8m points)

c++ - How to convert mutliple Matrix in Eigen to json with Jsoncpp?

I need to save my data in Eigen. I have some Matrix and other information that need to be save into json.

But I cannot find any useful document. Do you have any advise?

\ here is my data, a simple example
#include <Eigen/Core>
#include <json/json.h>
....
....

void main(int argc, char *argv[]){
    int Type;
    MatrixXf m1;
    MatrixXf m2;

    // init data, this is not important
    m1 << 1, 2, 3,
         4, 5, 6,
         7, 8, 9;
    m2 << 1, 2, 3,
         4, 5, 6,
         7, 8, 9;

    // how to save to json file?
    // {
    //  "Type":0,
    //  "m1":[[1,2,3],[4,5,6],[7,8,9]],
    //   "m2":[[1,2,3],[4,5,6],[7,8,9]],
    // }

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...