Mercurial > hg > octave-lyh
diff src/OPERATORS/op-pm-pm.cc @ 8453:9e1973f7709d
fix missing widening ops for diag & perm matrices
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 09 Jan 2009 16:25:11 +0100 |
parents | 445d27d79f4e |
children | eb63fbe60fab |
line wrap: on
line diff
--- a/src/OPERATORS/op-pm-pm.cc +++ b/src/OPERATORS/op-pm-pm.cc @@ -82,4 +82,5 @@ INSTALL_CONVOP (octave_perm_matrix, octave_matrix, perm_matrix_to_matrix); INSTALL_CONVOP (octave_perm_matrix, octave_float_perm_matrix, perm_matrix_to_float_perm_matrix); INSTALL_ASSIGNCONV (octave_perm_matrix, octave_matrix, octave_matrix); + INSTALL_WIDENOP (octave_perm_matrix, octave_matrix, perm_matrix_to_matrix); }