![]() |
slope 0.29.0
|
Representation of the clusters in SLOPE. More...
#include <clusters.h>
Public Member Functions | |
Clusters ()=default | |
Constructs an Clusters object. | |
Clusters (const Eigen::VectorXd &beta) | |
Constructs a Clusters object with the given beta vector. | |
std::size_t | size () |
Returns the number of clusters. | |
std::vector< int >::iterator | begin (const int i) |
Returns an iterator pointing to the beginning of the cluster with the given index. | |
std::vector< int >::iterator | end (const int i) |
Returns an iterator pointing to the end of the cluster with the given index. | |
std::vector< int >::const_iterator | cbegin (const int i) const |
Returns a constant iterator pointing to the beginning of the cluster with the given index. | |
std::vector< int >::const_iterator | cend (const int i) const |
Returns a constant iterator pointing to the end of the cluster with the given index. | |
int | cluster_size (const int i) const |
Returns the size of the cluster with the given index. | |
int | pointer (const int i) const |
Returns the pointer of the cluster with the given index. | |
int | n_clusters () const |
Returns the number of clusters. | |
double | coeff (const int i) const |
Returns the coefficient of the cluster with the given index. | |
void | setCoeff (const int i, const double x) |
Sets the coefficient of the cluster with the given index. | |
std::vector< double > | coeffs () const |
Returns a vector containing the coefficients of all clusters. | |
std::vector< int > | indices () const |
Returns a vector containing the indices of all clusters. | |
std::vector< int > | pointers () const |
Returns a vector containing the pointers of all clusters. | |
void | update (const int old_index, const int new_index, const double c_new) |
Updates the cluster structure when an index is changed. | |
void | update (const Eigen::VectorXd &beta) |
Updates the cluster structure with the given beta vector. | |
std::vector< std::vector< int > > | getClusters () const |
Returns the clusters as a vector of vectors. | |
Eigen::SparseMatrix< int > | patternMatrix () const |
Returns the cluster pattern as a sparse matrix. | |
Representation of the clusters in SLOPE.
Definition at line 17 of file clusters.h.
slope::Clusters::Clusters | ( | const Eigen::VectorXd & | beta | ) |
Constructs a Clusters object with the given beta vector.
beta | The beta vector. |
Definition at line 7 of file clusters.cpp.
std::vector< int >::iterator slope::Clusters::begin | ( | const int | i | ) |
Returns an iterator pointing to the beginning of the cluster with the given index.
i | The index of the cluster. |
Definition at line 58 of file clusters.cpp.
std::vector< int >::const_iterator slope::Clusters::cbegin | ( | const int | i | ) | const |
Returns a constant iterator pointing to the beginning of the cluster with the given index.
i | The index of the cluster. |
Definition at line 38 of file clusters.cpp.
std::vector< int >::const_iterator slope::Clusters::cend | ( | const int | i | ) | const |
Returns a constant iterator pointing to the end of the cluster with the given index.
i | The index of the cluster. |
Definition at line 48 of file clusters.cpp.
int slope::Clusters::cluster_size | ( | const int | i | ) | const |
Returns the size of the cluster with the given index.
i | The index of the cluster. |
Definition at line 78 of file clusters.cpp.
double slope::Clusters::coeff | ( | const int | i | ) | const |
Returns the coefficient of the cluster with the given index.
i | The index of the cluster. |
Definition at line 117 of file clusters.cpp.
std::vector< double > slope::Clusters::coeffs | ( | ) | const |
Returns a vector containing the coefficients of all clusters.
Definition at line 133 of file clusters.cpp.
std::vector< int >::iterator slope::Clusters::end | ( | const int | i | ) |
Returns an iterator pointing to the end of the cluster with the given index.
i | The index of the cluster. |
Definition at line 68 of file clusters.cpp.
std::vector< std::vector< int > > slope::Clusters::getClusters | ( | ) | const |
Returns the clusters as a vector of vectors.
Definition at line 313 of file clusters.cpp.
std::vector< int > slope::Clusters::indices | ( | ) | const |
Returns a vector containing the indices of all clusters.
Definition at line 152 of file clusters.cpp.
int slope::Clusters::n_clusters | ( | ) | const |
Returns the number of clusters.
Definition at line 103 of file clusters.cpp.
Eigen::SparseMatrix< int > slope::Clusters::patternMatrix | ( | ) | const |
Returns the cluster pattern as a sparse matrix.
Definition at line 336 of file clusters.cpp.
int slope::Clusters::pointer | ( | const int | i | ) | const |
Returns the pointer of the cluster with the given index.
i | The index of the cluster. |
Definition at line 93 of file clusters.cpp.
std::vector< int > slope::Clusters::pointers | ( | ) | const |
Returns a vector containing the pointers of all clusters.
Definition at line 158 of file clusters.cpp.
void slope::Clusters::setCoeff | ( | const int | i, |
const double | x | ||
) |
Sets the coefficient of the cluster with the given index.
i | The index of the cluster. |
x | The new coefficient value. |
Definition at line 127 of file clusters.cpp.
|
inline |
Returns the number of clusters.
Definition at line 35 of file clusters.h.
void slope::Clusters::update | ( | const Eigen::VectorXd & | beta | ) |
Updates the cluster structure with the given beta vector.
beta | The beta vector. |
Definition at line 184 of file clusters.cpp.
void slope::Clusters::update | ( | const int | old_index, |
const int | new_index, | ||
const double | c_new | ||
) |
Updates the cluster structure when an index is changed.
old_index | The old index. |
new_index | The new index. |
c_new | The new coefficient value. |
Definition at line 164 of file clusters.cpp.