Skip to content

Instantly share code, notes, and snippets.

@sgarciav
Created May 9, 2018 04:19
Show Gist options
  • Save sgarciav/91e149bfd736dd34264a7b91952c749f to your computer and use it in GitHub Desktop.
Save sgarciav/91e149bfd736dd34264a7b91952c749f to your computer and use it in GitHub Desktop.
Common items for C++ that I always forget how to do.
// count character occurances in string
std::string s = "the answer; should ;be ;; four";
size_t n = std::count(s.begin(), s.end(), ';');
// Mahalanobis distance
double dist = sqrt((x - u).transposeInPlace() * cov_matrix.inverse() * (x - u)); // untested
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment