예제 #1
0
파일: dense.hpp 프로젝트: jwbuurlage/Zee
 void operator=(DMatrix& other) {
     elements_ = other.elements_;
     this->cols_ = other.getCols();
     this->rows_ = other.getRows();
 }
예제 #2
0
파일: dense.hpp 프로젝트: jwbuurlage/Zee
 DMatrix(DMatrix& other) : Base(other.getRows(), other.getCols()) {
     *this = other;
 }