*** empty log message ***

This commit is contained in:
jiri 2011-06-02 14:42:07 +00:00
parent ec7bcc0fd7
commit 820d92b85f

2
mat.cc
View File

@ -50,7 +50,7 @@ const NRMat<T> NRMat<T>::oplus(const NRMat<T> &rhs) const {
SAME_LOC(*this, rhs);
NRMat<T> ret(nn + rhs.nn, mm + rhs.mm, getlocation());
ret = 0;
ret.clear();
ret.storesubmatrix(0, 0, *this);
ret.storesubmatrix(nn, mm, rhs);
return ret;