示例#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;
 }