slope 0.29.0
Loading...
Searching...
No Matches
utils.cpp
1#include "utils.h"
2#include <stdexcept>
3
4namespace slope {
5
6void
7validateOption(const std::string& value,
8 const std::set<std::string>& valid_options,
9 const std::string& parameter_name)
10{
11 if (valid_options.find(value) == valid_options.end()) {
12 std::string valid_list =
13 std::accumulate(std::next(valid_options.begin()),
14 valid_options.end(),
15 std::string("'") + *valid_options.begin() + "'",
16 [](const std::string& a, const std::string& b) {
17 return a + ", '" + b + "'";
18 });
19
20 throw std::invalid_argument("Invalid " + parameter_name + ": '" + value +
21 "'. Must be one of: " + valid_list);
22 }
23}
24
25Eigen::MatrixXd
26subset(const Eigen::MatrixXd& x, const std::vector<int>& indices)
27{
28 return x(indices, Eigen::all);
29}
30
31Eigen::SparseMatrix<double>
32subset(const Eigen::SparseMatrix<double>& x, const std::vector<int>& indices)
33{
34 std::vector<Eigen::Triplet<double>> triplets;
35 triplets.reserve(x.nonZeros());
36
37 for (int j = 0; j < x.cols(); ++j) {
38 for (Eigen::SparseMatrix<double>::InnerIterator it(x, j); it; ++it) {
39 auto it_idx = std::find(indices.begin(), indices.end(), it.row());
40
41 if (it_idx != indices.end()) {
42 int new_row = std::distance(indices.begin(), it_idx);
43 triplets.emplace_back(new_row, j, it.value());
44 }
45 }
46 }
47 Eigen::SparseMatrix<double> out(indices.size(), x.cols());
48 out.setFromTriplets(triplets.begin(), triplets.end());
49
50 return out;
51}
52
53Eigen::MatrixXd
54subsetCols(const Eigen::MatrixXd& x, const std::vector<int>& indices)
55{
56 return x(Eigen::all, indices);
57}
58
59Eigen::SparseMatrix<double>
60subsetCols(const Eigen::SparseMatrix<double>& x,
61 const std::vector<int>& indices)
62{
63 std::vector<Eigen::Triplet<double>> triplets;
64 triplets.reserve(x.nonZeros());
65
66 for (size_t j_idx = 0; j_idx < indices.size(); ++j_idx) {
67 int j = indices[j_idx];
68 for (Eigen::SparseMatrix<double>::InnerIterator it(x, j); it; ++it) {
69 triplets.emplace_back(it.row(), j_idx, it.value());
70 }
71 }
72 Eigen::SparseMatrix<double> out(x.rows(), indices.size());
73 out.setFromTriplets(triplets.begin(), triplets.end());
74
75 return out;
76}
77
78} // namespace slope
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5
Eigen::MatrixXd subsetCols(const Eigen::MatrixXd &x, const std::vector< int > &indices)
Extract specified columns from a dense matrix.
Definition utils.cpp:54
void validateOption(const std::string &value, const std::set< std::string > &valid_options, const std::string &parameter_name)
Validates if a given value exists in a set of valid options.
Definition utils.cpp:7
Eigen::MatrixXd subset(const Eigen::MatrixXd &x, const std::vector< int > &indices)
Extract a subset of rows from an Eigen matrix.
Definition utils.cpp:26
Various utility functions.