Skip to content

Commit 906e119

Browse files
atrayeesTolisChal
authored andcommitted
Function/is correlation (#315)
* new function is_correlation_matrix * update example function call this example calls the is_correlation_matrix() function that is present in include/matrix_operations/EigenvaluesProblems.h * remove blank line * remove blank line * fix spaces, add function parameter
1 parent aba5dd9 commit 906e119

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

examples/correlation_matrices/sampler.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,11 @@ void correlation_matrix_uniform_sampling_MT(const unsigned int n, const unsigned
150150
std::cout << "Elapsed time : " << time << " (ms)" << std::endl;
151151

152152
int valid_points = 0;
153+
EigenvaluesProblems<NT, MT, Eigen::Matrix<NT, Eigen::Dynamic, 1>> solver;
153154
for(const auto& points : randPoints){
154-
if(is_correlation_matrix(points.mat)){
155-
valid_points++;
156-
}
155+
if(solver.is_correlation_matrix(points.mat)){
156+
valid_points++;
157+
}
157158
}
158159
std::cout << "Number of valid points = " << valid_points << std::endl;
159160

include/matrix_operations/EigenvaluesProblems.h

+18
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,24 @@ class EigenvaluesProblems<NT, Eigen::Matrix<NT,Eigen::Dynamic,Eigen::Dynamic>, E
439439
return false;
440440
}
441441

442+
/// Check if a matrix is indeed a correlation matrix
443+
/// return true if input matrix is found to be a correlation matrix
444+
/// |param[in] matrix
445+
bool is_correlation_matrix(const MT& matrix, const double tol = 1e-8){
446+
447+
//check if all the diagonal elements are ones
448+
for (int i=0 ; i<matrix.rows() ; i++){
449+
if (std::abs(matrix(i, i)-1.0) > tol){
450+
return false;
451+
}
452+
}
453+
454+
//check if the matrix is positive definite
455+
if (isPositiveSemidefinite(matrix)) return true;
456+
457+
return false;
458+
}
459+
442460
/// Minimum positive eigenvalue of the generalized eigenvalue problem A - lB
443461
/// Use Eigen::GeneralizedSelfAdjointEigenSolver<MT> ges(B,A) (faster)
444462
/// \param[in] A: symmetric positive definite matrix

0 commit comments

Comments
 (0)