Skip to content

Commit

Permalink
Update sample_correlation_matrices.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
atrayees authored Jul 16, 2024
1 parent ff4b769 commit 272e47b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/sampling/sample_correlation_matrices.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void uniform_correlation_sampling_MT( const unsigned int &n,
const unsigned int &num_points,
unsigned int const& nburns){
using PointList = std::vector<PointType>;
PointList randPoints;
PointList randPoints;

CorrelationSpectrahedron_MT<PointType> P(n);
const unsigned int d = P.dimension();
Expand All @@ -61,7 +61,7 @@ void uniform_correlation_sampling_MT( const unsigned int &n,
for(const auto&p : randPoints){
MT final_cor_mat = p.mat + p.mat.transpose() - MT::Identity(n, n);
randCorMatrices.push_back(final_cor_mat);
}
}

}

Expand Down

0 comments on commit 272e47b

Please sign in to comment.