Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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]],
    // }

}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...