Jaroslav,
With the following change you applied to pgmres.cc
@@ -234,7 +235,7 @@
ColumnVector matrixfreematrixmat::operator * (ColumnVector b)
{
- return (mat * b).column_vector_value ();
+ return mat * Matrix (b);
}
it does no compile for me anymore with 3.2.3, is it OK if I change it to
return ColumnVector (mat * Matrix(b));
?
c.
P.S. This is temporary anyway as I am working on the .m version of
pgmres
------------------------------------------------------------------------------
_______________________________________________
Octave-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/octave-dev