LU decomposition: Difference between revisions

Content deleted Content added
Added C++ solution
m Removed unnecessary code
Line 653:
return row_data(row)[column];
}
 
friend bool operator==(const matrix& a, const matrix& b) {
return a.rows_ == b.rows_ && a.columns_ == b.columns_ &&
a.elements_ == b.elements_;
}
 
private:
size_t rows_;