*** empty log message ***
This commit is contained in:
1
smat.h
1
smat.h
@@ -43,6 +43,7 @@ public:
|
||||
NRSMat & operator|=(const NRSMat &rhs); //assignment to a new copy
|
||||
NRSMat & operator=(const NRSMat &rhs); //assignment
|
||||
void clear() {LA_traits<T>::clear(v,NN2);}; //zero out
|
||||
void randomize(const T&x);
|
||||
NRSMat & operator=(const T &a); //assign a to diagonal
|
||||
const bool operator!=(const NRSMat &rhs) const {if(nn!=rhs.nn) return 1; return LA_traits<T>::gencmp(v,rhs.v,NN2);} //memcmp for scalars else elementwise
|
||||
const bool operator==(const NRSMat &rhs) const {return !(*this != rhs);};
|
||||
|
||||
Reference in New Issue
Block a user