diff src/OPERATORS/op-fcs-fcs.cc @ 7814:87865ed7405f

Second set of single precision test code and fix of resulting bugs
author David Bateman <dbateman@free.fr>
date Mon, 02 Jun 2008 16:57:45 +0200
parents 82be108cc558
children 283989f2da9b
line wrap: on
line diff
--- a/src/OPERATORS/op-fcs-fcs.cc	Thu May 22 22:00:26 2008 +0200
+++ b/src/OPERATORS/op-fcs-fcs.cc	Mon Jun 02 16:57:45 2008 +0200
@@ -180,6 +180,12 @@
 DEFNDCATOP_FN (fcs_fcs, float_complex, float_complex, float_complex_array, 
 	       float_complex_array, concat)
 
+DEFNDCATOP_FN (cs_fcs, complex, float_complex, float_complex_array, 
+	       float_complex_array, concat)
+
+DEFNDCATOP_FN (fcs_cs, float_complex, complex, float_complex_array, 
+	       float_complex_array, concat)
+
 CONVDECL (float_complex_to_complex)
 {
   CAST_CONV_ARG (const octave_float_complex&);
@@ -219,6 +225,8 @@
   INSTALL_BINOP (op_el_or, octave_float_complex, octave_float_complex, el_or);
 
   INSTALL_CATOP (octave_float_complex, octave_float_complex, fcs_fcs);
+  INSTALL_CATOP (octave_complex, octave_float_complex, cs_fcs);
+  INSTALL_CATOP (octave_float_complex, octave_complex, fcs_cs);
 
   INSTALL_ASSIGNCONV (octave_float_complex, octave_float_complex, octave_float_complex_matrix);