comparison 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
comparison
equal deleted inserted replaced
8452:d6a349c7bd39 8453:9e1973f7709d
80 INSTALL_BINOP (op_ldiv, octave_perm_matrix, octave_perm_matrix, ldiv); 80 INSTALL_BINOP (op_ldiv, octave_perm_matrix, octave_perm_matrix, ldiv);
81 81
82 INSTALL_CONVOP (octave_perm_matrix, octave_matrix, perm_matrix_to_matrix); 82 INSTALL_CONVOP (octave_perm_matrix, octave_matrix, perm_matrix_to_matrix);
83 INSTALL_CONVOP (octave_perm_matrix, octave_float_perm_matrix, perm_matrix_to_float_perm_matrix); 83 INSTALL_CONVOP (octave_perm_matrix, octave_float_perm_matrix, perm_matrix_to_float_perm_matrix);
84 INSTALL_ASSIGNCONV (octave_perm_matrix, octave_matrix, octave_matrix); 84 INSTALL_ASSIGNCONV (octave_perm_matrix, octave_matrix, octave_matrix);
85 INSTALL_WIDENOP (octave_perm_matrix, octave_matrix, perm_matrix_to_matrix);
85 } 86 }