This commit is contained in:
kai
2025-05-31 12:54:24 +02:00
parent 5224b72924
commit bdb3d4b88c

View File

@@ -115,7 +115,7 @@ public:
Matrix &operator/=(double x);
std::vector<double> &get_row(int i) {
return std::vector<double> slice(i * this->cols(), this->cols());
return slice(i * this->cols(), this->cols());
}
private: