op-cs-sm.cc

Go to the documentation of this file.
00001 /*
00002 
00003 Copyright (C) 2004-2012 David Bateman
00004 Copyright (C) 1998-2004 Andy Adler
00005 
00006 This file is part of Octave.
00007 
00008 Octave is free software; you can redistribute it and/or modify it
00009 under the terms of the GNU General Public License as published by the
00010 Free Software Foundation; either version 3 of the License, or (at your
00011 option) any later version.
00012 
00013 Octave is distributed in the hope that it will be useful, but WITHOUT
00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00015 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00016 for more details.
00017 
00018 You should have received a copy of the GNU General Public License
00019 along with Octave; see the file COPYING.  If not, see
00020 <http://www.gnu.org/licenses/>.
00021 
00022 */
00023 
00024 #ifdef HAVE_CONFIG_H
00025 #include <config.h>
00026 #endif
00027 
00028 #include "gripes.h"
00029 #include "oct-obj.h"
00030 #include "ov.h"
00031 #include "ov-typeinfo.h"
00032 #include "ov-complex.h"
00033 #include "ops.h"
00034 #include "xpow.h"
00035 
00036 #include "sparse-xpow.h"
00037 #include "sparse-xdiv.h"
00038 #include "ov-re-sparse.h"
00039 #include "ov-cx-sparse.h"
00040 #include "smx-cs-sm.h"
00041 #include "smx-sm-cs.h"
00042 
00043 // complex by sparse matrix ops.
00044 
00045 DEFBINOP_OP (add, complex, sparse_matrix, +)
00046 DEFBINOP_OP (sub, complex, sparse_matrix, -)
00047 DEFBINOP_OP (mul, complex, sparse_matrix, *)
00048 
00049 DEFBINOP (div, complex, sparse_matrix)
00050 {
00051   CAST_BINOP_ARGS (const octave_complex&, const octave_sparse_matrix&);
00052 
00053   if (v2.rows() == 1 && v2.columns() == 1)
00054     {
00055       double d = v2.scalar_value ();
00056 
00057       if (d == 0.0)
00058         gripe_divide_by_zero ();
00059 
00060       return octave_value (SparseComplexMatrix (1, 1, v1.complex_value () / d));
00061     }
00062   else
00063     {
00064       MatrixType typ = v2.matrix_type ();
00065       ComplexMatrix m1 = ComplexMatrix (1, 1, v1.complex_value ());
00066       SparseMatrix m2 = v2.sparse_matrix_value ();
00067       ComplexMatrix ret = xdiv (m1, m2, typ);
00068       v2.matrix_type (typ);
00069       return ret;
00070     }
00071 }
00072 
00073 DEFBINOP (pow, complex, sparse_matrix)
00074 {
00075   CAST_BINOP_ARGS (const octave_complex&, const octave_sparse_matrix&);
00076   return xpow (v1.complex_value (), v2.matrix_value ());
00077 }
00078 
00079 DEFBINOP (ldiv, complex, sparse_matrix)
00080 {
00081   CAST_BINOP_ARGS (const octave_complex&, const octave_sparse_matrix&);
00082 
00083   Complex d = v1.complex_value ();
00084   octave_value retval;
00085 
00086   if (d == 0.0)
00087     gripe_divide_by_zero ();
00088 
00089   retval = octave_value (v2.sparse_matrix_value () / d);
00090 
00091   return retval;
00092 }
00093 
00094 DEFBINOP_FN (lt, complex, sparse_matrix, mx_el_lt)
00095 DEFBINOP_FN (le, complex, sparse_matrix, mx_el_le)
00096 DEFBINOP_FN (eq, complex, sparse_matrix, mx_el_eq)
00097 DEFBINOP_FN (ge, complex, sparse_matrix, mx_el_ge)
00098 DEFBINOP_FN (gt, complex, sparse_matrix, mx_el_gt)
00099 DEFBINOP_FN (ne, complex, sparse_matrix, mx_el_ne)
00100 
00101 DEFBINOP_OP (el_mul, complex, sparse_matrix, *)
00102 DEFBINOP_FN (el_div, complex, sparse_matrix, x_el_div)
00103 DEFBINOP_FN (el_pow, complex, sparse_matrix, elem_xpow)
00104 
00105 DEFBINOP (el_ldiv, complex, sparse_matrix)
00106 {
00107   CAST_BINOP_ARGS (const octave_complex&, const octave_sparse_matrix&);
00108 
00109   Complex d = v1.complex_value ();
00110   octave_value retval;
00111 
00112   if (d == 0.0)
00113     gripe_divide_by_zero ();
00114 
00115   retval = octave_value (v2.sparse_matrix_value () / d);
00116 
00117   return retval;
00118 }
00119 
00120 DEFBINOP_FN (el_and, complex, sparse_matrix, mx_el_and)
00121 DEFBINOP_FN (el_or,  complex, sparse_matrix, mx_el_or)
00122 
00123 DEFCATOP (cs_sm, sparse_matrix, complex)
00124 {
00125   CAST_BINOP_ARGS (octave_complex&, const octave_sparse_matrix&);
00126   SparseComplexMatrix tmp (1, 1, v1.complex_value ());
00127   return octave_value (tmp. concat (v2.sparse_matrix_value (), ra_idx));
00128 }
00129 
00130 DEFCONV (sparse_matrix_conv, complex, sparse_matrix)
00131 {
00132   CAST_CONV_ARG (const octave_complex&);
00133 
00134   return new octave_sparse_matrix
00135     (SparseMatrix (v.matrix_value ()));
00136 }
00137 
00138 void
00139 install_cs_sm_ops (void)
00140 {
00141   INSTALL_BINOP (op_add, octave_complex, octave_sparse_matrix, add);
00142   INSTALL_BINOP (op_sub, octave_complex, octave_sparse_matrix, sub);
00143   INSTALL_BINOP (op_mul, octave_complex, octave_sparse_matrix, mul);
00144   INSTALL_BINOP (op_div, octave_complex, octave_sparse_matrix, div);
00145   INSTALL_BINOP (op_pow, octave_complex, octave_sparse_matrix, pow);
00146   INSTALL_BINOP (op_ldiv, octave_complex, octave_sparse_matrix, ldiv);
00147   INSTALL_BINOP (op_lt, octave_complex, octave_sparse_matrix, lt);
00148   INSTALL_BINOP (op_le, octave_complex, octave_sparse_matrix, le);
00149   INSTALL_BINOP (op_eq, octave_complex, octave_sparse_matrix, eq);
00150   INSTALL_BINOP (op_ge, octave_complex, octave_sparse_matrix, ge);
00151   INSTALL_BINOP (op_gt, octave_complex, octave_sparse_matrix, gt);
00152   INSTALL_BINOP (op_ne, octave_complex, octave_sparse_matrix, ne);
00153   INSTALL_BINOP (op_el_mul, octave_complex, octave_sparse_matrix, el_mul);
00154   INSTALL_BINOP (op_el_div, octave_complex, octave_sparse_matrix, el_div);
00155   INSTALL_BINOP (op_el_pow, octave_complex, octave_sparse_matrix, el_pow);
00156   INSTALL_BINOP (op_el_ldiv, octave_complex, octave_sparse_matrix, el_ldiv);
00157   INSTALL_BINOP (op_el_and, octave_complex, octave_sparse_matrix, el_and);
00158   INSTALL_BINOP (op_el_or, octave_complex, octave_sparse_matrix, el_or);
00159 
00160   INSTALL_CATOP (octave_complex, octave_sparse_matrix, cs_sm);
00161 
00162   INSTALL_ASSIGNCONV (octave_complex, octave_sparse_matrix,
00163                       octave_complex_matrix);
00164 
00165   INSTALL_WIDENOP (octave_complex, octave_sparse_matrix, sparse_matrix_conv);
00166 }
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines