op-m-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-re-mat.h"
00033 #include "ops.h"
00034 #include "xdiv.h"
00035 
00036 #include "sparse-xpow.h"
00037 #include "sparse-xdiv.h"
00038 #include "smx-sm-m.h"
00039 #include "smx-m-sm.h"
00040 #include "ov-re-sparse.h"
00041 
00042 // matrix by sparse matrix ops.
00043 
00044 DEFBINOP_OP (add, matrix, sparse_matrix, +)
00045 DEFBINOP_OP (sub, matrix, sparse_matrix, -)
00046 
00047 DEFBINOP_OP (mul, matrix, sparse_matrix, *)
00048 
00049 DEFBINOP (div, matrix, sparse_matrix)
00050 {
00051   CAST_BINOP_ARGS (const octave_matrix&, 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 (v1.array_value () / d);
00061     }
00062   else
00063     {
00064       MatrixType typ = v2.matrix_type ();
00065 
00066       Matrix ret = xdiv (v1.matrix_value (), v2.sparse_matrix_value (), typ);
00067 
00068       v2.matrix_type (typ);
00069       return ret;
00070     }
00071 }
00072 
00073 DEFBINOPX (pow, matrix, sparse_matrix)
00074 {
00075   error ("can't do A ^ B for A and B both matrices");
00076   return octave_value ();
00077 }
00078 
00079 DEFBINOP (ldiv, matrix, sparse_matrix)
00080 {
00081   CAST_BINOP_ARGS (const octave_matrix&, const octave_sparse_matrix&);
00082   MatrixType typ = v1.matrix_type ();
00083 
00084   Matrix ret = xleftdiv (v1.matrix_value (), v2.matrix_value (), typ);
00085 
00086   v1.matrix_type (typ);
00087   return ret;
00088 }
00089 
00090 DEFBINOP_FN (mul_trans, matrix, sparse_matrix, mul_trans);
00091 
00092 DEFBINOP_FN (lt, matrix, sparse_matrix, mx_el_lt)
00093 DEFBINOP_FN (le, matrix, sparse_matrix, mx_el_le)
00094 DEFBINOP_FN (eq, matrix, sparse_matrix, mx_el_eq)
00095 DEFBINOP_FN (ge, matrix, sparse_matrix, mx_el_ge)
00096 DEFBINOP_FN (gt, matrix, sparse_matrix, mx_el_gt)
00097 DEFBINOP_FN (ne, matrix, sparse_matrix, mx_el_ne)
00098 
00099 DEFBINOP_FN (el_mul, matrix, sparse_matrix, product)
00100 DEFBINOP_FN (el_div, matrix, sparse_matrix, quotient)
00101 
00102 DEFBINOP (el_pow, matrix, sparse_matrix)
00103 {
00104   CAST_BINOP_ARGS (const octave_matrix&, const octave_sparse_matrix&);
00105 
00106   return octave_value (elem_xpow (SparseMatrix (v1.matrix_value ()),
00107                                   v2.sparse_matrix_value ()));
00108 }
00109 
00110 DEFBINOP (el_ldiv, matrix, sparse_matrix)
00111 {
00112   CAST_BINOP_ARGS (const octave_matrix&, const octave_sparse_matrix&);
00113 
00114   return octave_value
00115     (quotient (v2.sparse_matrix_value (), v1.matrix_value ()));
00116 }
00117 
00118 DEFBINOP_FN (el_and, matrix, sparse_matrix, mx_el_and)
00119 DEFBINOP_FN (el_or,  matrix, sparse_matrix, mx_el_or)
00120 
00121 DEFCATOP (m_sm, matrix, sparse_matrix)
00122 {
00123   CAST_BINOP_ARGS (octave_matrix&, const octave_sparse_matrix&);
00124   SparseMatrix tmp (v1.matrix_value ());
00125   return octave_value (tmp. concat (v2.sparse_matrix_value (), ra_idx));
00126 }
00127 
00128 DEFCONV (sparse_matrix_conv, matrix, sparse_matrix)
00129 {
00130   CAST_CONV_ARG (const octave_matrix&);
00131   return new octave_sparse_matrix (SparseMatrix (v.matrix_value ()));
00132 }
00133 
00134 DEFNDASSIGNOP_FN (assign, matrix, sparse_matrix, array, assign)
00135 
00136 void
00137 install_m_sm_ops (void)
00138 {
00139   INSTALL_BINOP (op_add, octave_matrix, octave_sparse_matrix, add);
00140   INSTALL_BINOP (op_sub, octave_matrix, octave_sparse_matrix, sub);
00141   INSTALL_BINOP (op_mul, octave_matrix, octave_sparse_matrix, mul);
00142   INSTALL_BINOP (op_div, octave_matrix, octave_sparse_matrix, div);
00143   INSTALL_BINOP (op_pow, octave_matrix, octave_sparse_matrix, pow);
00144   INSTALL_BINOP (op_ldiv, octave_matrix, octave_sparse_matrix, ldiv);
00145   INSTALL_BINOP (op_mul_trans, octave_matrix, octave_sparse_matrix, mul_trans);
00146   INSTALL_BINOP (op_mul_herm, octave_matrix, octave_sparse_matrix, mul_trans);
00147   INSTALL_BINOP (op_lt, octave_matrix, octave_sparse_matrix, lt);
00148   INSTALL_BINOP (op_le, octave_matrix, octave_sparse_matrix, le);
00149   INSTALL_BINOP (op_eq, octave_matrix, octave_sparse_matrix, eq);
00150   INSTALL_BINOP (op_ge, octave_matrix, octave_sparse_matrix, ge);
00151   INSTALL_BINOP (op_gt, octave_matrix, octave_sparse_matrix, gt);
00152   INSTALL_BINOP (op_ne, octave_matrix, octave_sparse_matrix, ne);
00153   INSTALL_BINOP (op_el_mul, octave_matrix, octave_sparse_matrix, el_mul);
00154   INSTALL_BINOP (op_el_div, octave_matrix, octave_sparse_matrix, el_div);
00155   INSTALL_BINOP (op_el_pow, octave_matrix, octave_sparse_matrix, el_pow);
00156   INSTALL_BINOP (op_el_ldiv, octave_matrix, octave_sparse_matrix, el_ldiv);
00157   INSTALL_BINOP (op_el_and, octave_matrix, octave_sparse_matrix, el_and);
00158   INSTALL_BINOP (op_el_or, octave_matrix, octave_sparse_matrix,  el_or);
00159 
00160   INSTALL_CATOP (octave_matrix, octave_sparse_matrix, m_sm);
00161 
00162   INSTALL_ASSIGNOP (op_asn_eq, octave_matrix, octave_sparse_matrix, assign)
00163   INSTALL_ASSIGNCONV (octave_matrix, octave_sparse_matrix, octave_matrix)
00164 
00165   INSTALL_WIDENOP (octave_matrix, octave_sparse_matrix,
00166                    sparse_matrix_conv);
00167 }
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines