コード例 #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;
 }