4 static Dstream
*dout
= 0;
7 Set the debugging output. Will not delete/swallow argument.
9 void set_matrix_debug(Dstream
&ds
)
14 Matrix::operator String() const
19 for (int i
=0; i
< rows(); i
++){
20 for (int j
= 0; j
< cols(); j
++) {
21 s
+= String(dat
->elem(i
,j
), "%6f ");
41 Vector::operator String() const
46 for (int i
=0; i
< dim(); i
++) {
47 s
+= String(dat
[i
], "%6f") + String(' ');