comparison src/OPERATORS/op-m-cs.cc @ 7789:82be108cc558

First attempt at single precision tyeps * * * corrections to qrupdate single precision routines * * * prefer demotion to single over promotion to double * * * Add single precision support to log2 function * * * Trivial PROJECT file update * * * Cache optimized hermitian/transpose methods * * * Add tests for tranpose/hermitian and ChangeLog entry for new transpose code
author David Bateman <dbateman@free.fr>
date Sun, 27 Apr 2008 22:34:17 +0200
parents a1dbe9d80eee
children eb63fbe60fab
comparison
equal deleted inserted replaced
7788:45f5faba05a2 7789:82be108cc558
32 32
33 #include "gripes.h" 33 #include "gripes.h"
34 #include "oct-obj.h" 34 #include "oct-obj.h"
35 #include "ov.h" 35 #include "ov.h"
36 #include "ov-re-mat.h" 36 #include "ov-re-mat.h"
37 #include "ov-flt-re-mat.h"
37 #include "ov-cx-mat.h" 38 #include "ov-cx-mat.h"
39 #include "ov-flt-cx-mat.h"
38 #include "ov-complex.h" 40 #include "ov-complex.h"
39 #include "ov-typeinfo.h" 41 #include "ov-typeinfo.h"
40 #include "ops.h" 42 #include "ops.h"
41 #include "xdiv.h" 43 #include "xdiv.h"
42 #include "xpow.h" 44 #include "xpow.h"
133 INSTALL_BINOP (op_el_or, octave_matrix, octave_complex, el_or); 135 INSTALL_BINOP (op_el_or, octave_matrix, octave_complex, el_or);
134 136
135 INSTALL_CATOP (octave_matrix, octave_complex, m_cs); 137 INSTALL_CATOP (octave_matrix, octave_complex, m_cs);
136 138
137 INSTALL_ASSIGNCONV (octave_matrix, octave_complex, octave_complex_matrix); 139 INSTALL_ASSIGNCONV (octave_matrix, octave_complex, octave_complex_matrix);
140 INSTALL_ASSIGNCONV (octave_float_matrix, octave_complex, octave_float_complex_matrix);
138 } 141 }
139 142
140 /* 143 /*
141 ;;; Local Variables: *** 144 ;;; Local Variables: ***
142 ;;; mode: C++ *** 145 ;;; mode: C++ ***