I have a class Sparse_Matrix that allows me to efficiently work with sparse matrices.
I would like to instantiate a specific matrix by using specific (idiomatic) keywords such as Upper, Identity, etc.
This is my class declaration (namespace matrix)
template <typename T>
class Sparse_Matrix
{
private:
int rows;
int cols;
std::vector<int> col;
std::vector<int> row;
std::vector<T> value;
...
Is there a way to get an pre-initialized object?
Sparse_Matrix<int> = Eye(3);
would return a 3-by-3 identity matrix.
I have looked at constructor idioms but those require some soft of static type that is not compatible with my class (though I am open to suggestions).
I have also tried this code:
template <typename T>
Sparse_Matrix<T> Eye(int size)
{
Sparse_Matrix<T> ma;
ma.IdentityMatrix(size);
std::cout << "Eye!" << std::endl;
return ma;
}
...
Sparse_Matrix<int> blah = Eye(10);
but to no avail.
Thank you,
SunnyBoyNY
no matching function for call to "Eye(int)"– SunnyBoyNY Jan 11 at 2:37