On Fri, May 28, 2010 at 4:54 PM, Carlo de Falco <[email protected]> wrote: > 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)); > > ?
Yes. Apparently the conversion used to be explicit. -- RNDr. Jaroslav Hajek, PhD computing expert & GNU Octave developer Aeronautical Research and Test Institute (VZLU) Prague, Czech Republic url: www.highegg.matfyz.cz ------------------------------------------------------------------------------ _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
