我试图使用名为" Eigen Library"的矩阵库对矩阵进行一些操作。我的尺寸为50 X 100000矩阵,我想找到它的协方差矩阵。那么,我可以使用built_in函数来找到协方差矩阵吗?
C ++示例代码:
#include "Eigen/Core"
#include "Eigen/Dense"
using namespace Eigen;
using namespace std;
int main()
{
MatrixXf my_matrx = MatrixXf::Random(50,100000);
//Now, i want to find a function to find the covariance matrix of "my_matrx", like below:
MatrixXf my_cov_matrix = any_function(my_matrx);
}