Load matrix matlab format with armadillo library problems

1.1k Views Asked by At

I've some problem if I try to load a matrix.mat <224x2 double> with Armadillo library:

mat A;

  A.load("matrix.mat");

  cout << " " << A.n_rows << " " << A.n_cols << "\n";

It prints: 5623 1

Can you tell me why?

0

There are 0 best solutions below