/* Copyright (C) 2003 Motorola Inc Copyright (C) 2003 David Bateman This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. In addition to the terms of the GPL, you are permitted to link this program with any Open Source program, as defined by the Open Source Initiative (www.opensource.org) */ #if defined (__GNUG__) && defined (USE_PRAGMA_INTERFACE_IMPLEMENTATION) #pragma implementation #endif #include #include #include #include #include #include #include #include #include "ov-fixed-complex.h" #include "ov-fixed-mat.h" #include "ov-fixed-cx-mat.h" #include "fixed-def.h" // fixed matrix by fixed complex scalar ops. FIXED_DEFBINOP_OP (add, fixed_matrix, fixed_complex, fixed_complex_matrix, +) FIXED_DEFBINOP_OP (sub, fixed_matrix, fixed_complex, fixed_complex_matrix, -) FIXED_DEFBINOP_OP (mul, fixed_matrix, fixed_complex, fixed_complex_matrix, *) DEFBINOP (div, fixed_matrix, fixed_complex) { CAST_BINOP_ARGS (const octave_fixed_matrix&, const octave_fixed_complex&); FixedPointComplex f = v2.fixed_complex_value (); if (f.fixedpoint() == 0.0) gripe_divide_by_zero (); return new octave_fixed_complex_matrix (v1.fixed_matrix_value () / f); } DEFBINOP (pow, fixed_matrix, fixed_complex) { CAST_BINOP_ARGS (const octave_fixed_matrix&, const octave_fixed_complex&); return new octave_fixed_complex_matrix (pow (v1.fixed_matrix_value (), v2.fixed_complex_matrix_value ())); } DEFBINOP_FN (lt, fixed_matrix, fixed_complex, mx_el_lt) DEFBINOP_FN (le, fixed_matrix, fixed_complex, mx_el_le) DEFBINOP_FN (eq, fixed_matrix, fixed_complex, mx_el_eq) DEFBINOP_FN (ge, fixed_matrix, fixed_complex, mx_el_ge) DEFBINOP_FN (gt, fixed_matrix, fixed_complex, mx_el_gt) DEFBINOP_FN (ne, fixed_matrix, fixed_complex, mx_el_ne) FIXED_DEFBINOP_OP (el_mul, fixed_matrix, fixed_complex, fixed_complex_matrix, *) DEFBINOP (el_div, fixed_matrix, fixed_complex) { CAST_BINOP_ARGS (const octave_fixed_matrix&, const octave_fixed_complex&); FixedPointComplex f = v2.fixed_complex_value (); if (f.fixedpoint() == 0.0) gripe_divide_by_zero (); return new octave_fixed_complex_matrix (v1.fixed_matrix_value () / f); } FIXED_DEFBINOP_FN (el_pow, fixed_matrix, fixed_complex, fixed_complex_matrix, elem_pow) DEFBINOP (el_ldiv, fixed_matrix, fixed_complex) { CAST_BINOP_ARGS (const octave_fixed_matrix&, const octave_fixed_complex&); FixedPointComplex f = v2.fixed_complex_value (); boolMatrix no_zeros = (v1.fixed_matrix_value().all()).all(); if (!no_zeros(0,0)) gripe_divide_by_zero (); return new octave_fixed_complex_matrix (f / v1.fixed_matrix_value ()); } DEFBINOP_FN (el_and, fixed_matrix, fixed_complex, mx_el_and) DEFBINOP_FN (el_or, fixed_matrix, fixed_complex, mx_el_or) FIXED_DEFCATOP_FN (fm_fcs, fixed_matrix, fixed_complex, fixed_matrix, fixed_complex_matrix, fixed_complex_matrix, concat) void install_fm_fcs_ops (void) { INSTALL_BINOP (op_add, octave_fixed_matrix, octave_fixed_complex, add); INSTALL_BINOP (op_sub, octave_fixed_matrix, octave_fixed_complex, sub); INSTALL_BINOP (op_mul, octave_fixed_matrix, octave_fixed_complex, mul); INSTALL_BINOP (op_div, octave_fixed_matrix, octave_fixed_complex, div); INSTALL_BINOP (op_pow, octave_fixed_matrix, octave_fixed_complex, pow); INSTALL_BINOP (op_lt, octave_fixed_matrix, octave_fixed_complex, lt); INSTALL_BINOP (op_le, octave_fixed_matrix, octave_fixed_complex, le); INSTALL_BINOP (op_eq, octave_fixed_matrix, octave_fixed_complex, eq); INSTALL_BINOP (op_ge, octave_fixed_matrix, octave_fixed_complex, ge); INSTALL_BINOP (op_gt, octave_fixed_matrix, octave_fixed_complex, gt); INSTALL_BINOP (op_ne, octave_fixed_matrix, octave_fixed_complex, ne); INSTALL_BINOP (op_el_mul, octave_fixed_matrix, octave_fixed_complex, el_mul); INSTALL_BINOP (op_el_div, octave_fixed_matrix, octave_fixed_complex, el_div); INSTALL_BINOP (op_el_pow, octave_fixed_matrix, octave_fixed_complex, el_pow); INSTALL_BINOP (op_el_ldiv, octave_fixed_matrix, octave_fixed_complex, el_ldiv); INSTALL_BINOP (op_el_and, octave_fixed_matrix, octave_fixed_complex, el_and); INSTALL_BINOP (op_el_or, octave_fixed_matrix, octave_fixed_complex, el_or); FIXED_INSTALL_CATOP (octave_fixed_matrix, octave_fixed_complex, fm_fcs); INSTALL_ASSIGNCONV (octave_fixed_matrix, octave_fixed_complex, octave_fixed_complex_matrix); } /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; End: *** */