Skip to content

Commit

Permalink
fix getcoefficientsfrommatrix()
Browse files Browse the repository at this point in the history
  • Loading branch information
atrayees authored Jul 29, 2024
1 parent 8872612 commit 1b02f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sampling/sample_correlation_matrices.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <sampling/sampling.hpp>

template<typename NT, typename MT>
Eigen::Matrix<NT, Eigen::Dynamic, 1> getCoefficientsFromMatrix(const MT& mat) {
MT getCoefficientsFromMatrix(const MT& mat) {
int n = mat.rows();
int d = n * (n - 1) / 2;
Eigen::Matrix<NT, Eigen::Dynamic, 1> coeffs(d);
Expand Down

0 comments on commit 1b02f73

Please sign in to comment.