Skip to content
Snippets Groups Projects
Commit 2d692bc1 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add input offset to << op

parent c31f569e
No related branches found
No related tags found
No related merge requests found
...@@ -81,6 +81,6 @@ simox::math::operator<<(std::ostream& os, const LinearRegression3D& r) ...@@ -81,6 +81,6 @@ simox::math::operator<<(std::ostream& os, const LinearRegression3D& r)
<< " + " << r.coefficients(row, 1) << " * x" << " + " << r.coefficients(row, 1) << " * x"
; ;
} }
os << " ]>"; os << " ] and input offset " << r.inputOffset << ">";
return os; return os;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment