From 1b02f73c911d8c864d41ad43170f873bc457914e Mon Sep 17 00:00:00 2001 From: atrayees <121290945+atrayees@users.noreply.github.com> Date: Mon, 29 Jul 2024 23:10:52 +0530 Subject: [PATCH] fix getcoefficientsfrommatrix() --- include/sampling/sample_correlation_matrices.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sampling/sample_correlation_matrices.hpp b/include/sampling/sample_correlation_matrices.hpp index 3d66f0879..b2bd118b3 100644 --- a/include/sampling/sample_correlation_matrices.hpp +++ b/include/sampling/sample_correlation_matrices.hpp @@ -15,7 +15,7 @@ #include template -Eigen::Matrix getCoefficientsFromMatrix(const MT& mat) { +MT getCoefficientsFromMatrix(const MT& mat) { int n = mat.rows(); int d = n * (n - 1) / 2; Eigen::Matrix coeffs(d);