GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
op-fm-fm.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1996-2021 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if defined (HAVE_CONFIG_H)
27 # include "config.h"
28 #endif
29 
30 #include "errwarn.h"
31 #include "ovl.h"
32 #include "ov.h"
33 #include "ov-re-mat.h"
34 #include "ov-flt-re-mat.h"
35 #include "ov-typeinfo.h"
36 #include "ov-null-mat.h"
37 #include "ops.h"
38 #include "xdiv.h"
39 #include "xpow.h"
40 
41 // matrix unary ops.
42 
43 DEFNDUNOP_OP (not, float_matrix, float_array, !)
44 DEFNDUNOP_OP (uplus, float_matrix, float_array, /* no-op */)
45 DEFNDUNOP_OP (uminus, float_matrix, float_array, -)
46 
47 DEFUNOP (transpose, float_matrix)
48 {
49  const octave_float_matrix& v = dynamic_cast<const octave_float_matrix&> (a);
50 
51  if (v.ndims () > 2)
52  error ("transpose not defined for N-D objects");
53 
54  return octave_value (v.float_matrix_value ().transpose ());
55 }
56 
57 DEFNCUNOP_METHOD (incr, float_matrix, increment)
58 DEFNCUNOP_METHOD (decr, float_matrix, decrement)
59 DEFNCUNOP_METHOD (changesign, float_matrix, changesign)
60 
61 // matrix by matrix ops.
62 
63 DEFNDBINOP_OP (add, float_matrix, float_matrix, float_array, float_array, +)
64 DEFNDBINOP_OP (sub, float_matrix, float_matrix, float_array, float_array, -)
65 
66 DEFBINOP_OP (mul, float_matrix, float_matrix, *)
67 
68 DEFBINOP (div, float_matrix, float_matrix)
69 {
70  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
71  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
72  MatrixType typ = v2.matrix_type ();
73 
74  FloatMatrix ret = xdiv (v1.float_matrix_value (),
75  v2.float_matrix_value (), typ);
76 
77  v2.matrix_type (typ);
78  return ret;
79 }
80 
81 DEFBINOPX (pow, float_matrix, float_matrix)
82 {
83  error ("can't do A ^ B for A and B both matrices");
84 }
85 
86 DEFBINOP (ldiv, float_matrix, float_matrix)
87 {
88  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
89  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
90  MatrixType typ = v1.matrix_type ();
91 
93  v2.float_matrix_value (), typ);
94 
95  v1.matrix_type (typ);
96  return ret;
97 }
98 
99 DEFBINOP (trans_mul, float_matrix, float_matrix)
100 {
101  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
102  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
103  return octave_value(xgemm (v1.float_matrix_value (),
106 }
107 
108 DEFBINOP (mul_trans, float_matrix, float_matrix)
109 {
110  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
111  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
112  return octave_value(xgemm (v1.float_matrix_value (),
115 }
116 
117 DEFBINOP (trans_ldiv, float_matrix, float_matrix)
118 {
119  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
120  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
121  MatrixType typ = v1.matrix_type ();
122 
124  v2.float_matrix_value (), typ, blas_trans);
125 
126  v1.matrix_type (typ);
127  return ret;
128 }
129 
130 DEFNDBINOP_FN (lt, float_matrix, float_matrix, float_array,
131  float_array, mx_el_lt)
132 DEFNDBINOP_FN (le, float_matrix, float_matrix, float_array,
133  float_array, mx_el_le)
134 DEFNDBINOP_FN (eq, float_matrix, float_matrix, float_array,
135  float_array, mx_el_eq)
136 DEFNDBINOP_FN (ge, float_matrix, float_matrix, float_array,
137  float_array, mx_el_ge)
138 DEFNDBINOP_FN (gt, float_matrix, float_matrix, float_array,
139  float_array, mx_el_gt)
140 DEFNDBINOP_FN (ne, float_matrix, float_matrix, float_array,
141  float_array, mx_el_ne)
142 
143 DEFNDBINOP_FN (el_mul, float_matrix, float_matrix, float_array,
144  float_array, product)
145 DEFNDBINOP_FN (el_div, float_matrix, float_matrix, float_array,
146  float_array, quotient)
147 DEFNDBINOP_FN (el_pow, float_matrix, float_matrix, float_array,
148  float_array, elem_xpow)
149 
150 DEFBINOP (el_ldiv, float_matrix, float_matrix)
151 {
152  const octave_float_matrix& v1 = dynamic_cast<const octave_float_matrix&> (a1);
153  const octave_float_matrix& v2 = dynamic_cast<const octave_float_matrix&> (a2);
154 
156  v1.float_array_value ()));
157 }
158 
159 DEFNDBINOP_FN (el_and, float_matrix, float_matrix, float_array,
160  float_array, mx_el_and)
161 DEFNDBINOP_FN (el_or, float_matrix, float_matrix, float_array,
162  float_array, mx_el_or)
163 DEFNDBINOP_FN (el_not_and, float_matrix, float_matrix, float_array,
164  float_array, mx_el_not_and)
165 DEFNDBINOP_FN (el_not_or, float_matrix, float_matrix, float_array,
166  float_array, mx_el_not_or)
167 DEFNDBINOP_FN (el_and_not, float_matrix, float_matrix, float_array,
168  float_array, mx_el_and_not)
169 DEFNDBINOP_FN (el_or_not, float_matrix, float_matrix, float_array,
170  float_array, mx_el_or_not)
171 
172 DEFNDCATOP_FN (fm_fm, float_matrix, float_matrix, float_array,
173  float_array, concat)
174 
175 DEFNDCATOP_FN (m_fm, matrix, float_matrix, float_array, float_array, concat)
176 
177 DEFNDCATOP_FN (fm_m, float_matrix, matrix, float_array, float_array, concat)
178 
179 DEFNDASSIGNOP_FN (assign, float_matrix, float_matrix, float_array, assign)
180 
181 DEFNDASSIGNOP_FN (dbl_assign, matrix, float_matrix, array, assign)
182 
183 DEFNULLASSIGNOP_FN (null_assign, float_matrix, delete_elements)
184 
185 DEFNDASSIGNOP_OP (assign_add, float_matrix, float_matrix, float_array, +=)
186 DEFNDASSIGNOP_OP (assign_sub, float_matrix, float_matrix, float_array, -=)
187 DEFNDASSIGNOP_FNOP (assign_el_mul, float_matrix, float_matrix, float_array,
189 DEFNDASSIGNOP_FNOP (assign_el_div, float_matrix, float_matrix, float_array,
191 
192 void
193 install_fm_fm_ops (octave::type_info& ti)
194 {
200 
201  INSTALL_NCUNOP_TI (ti, op_incr, octave_float_matrix, incr);
202  INSTALL_NCUNOP_TI (ti, op_decr, octave_float_matrix, decr);
204 
218  el_mul);
220  el_div);
222  el_pow);
224  el_ldiv);
226  el_and);
228  el_or);
230  el_and_not);
232  el_or_not);
234  el_not_and);
236  el_not_or);
238  trans_mul);
240  mul_trans);
242  trans_mul);
244  mul_trans);
246  trans_ldiv);
248  trans_ldiv);
249 
253 
255  octave_float_matrix, assign);
256  INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_matrix,
257  octave_float_matrix, dbl_assign);
258 
260  null_assign);
262  null_assign);
264  null_assign);
265 
267  assign_add);
269  assign_sub);
271  assign_el_mul);
273  assign_el_div);
274 }
ComplexColumnVector quotient(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:152
ComplexColumnVector product_eq(ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:152
ComplexColumnVector product(const ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:152
ComplexColumnVector quotient_eq(ComplexColumnVector &x, const ComplexColumnVector &y)
Definition: CColVector.h:152
ComplexMatrix xgemm(const ComplexMatrix &a, const ComplexMatrix &b, blas_trans_type transa, blas_trans_type transb)
Definition: CMatrix.cc:3322
ComplexNDArray concat(NDArray &ra, ComplexNDArray &rb, const Array< octave_idx_type > &ra_idx)
Definition: CNDArray.cc:418
ComplexMatrix mul_trans(const ComplexMatrix &m, const SparseComplexMatrix &a)
Definition: CSparse.cc:7543
ComplexMatrix trans_mul(const SparseComplexMatrix &m, const ComplexMatrix &a)
Definition: CSparse.cc:7573
boolMatrix mx_el_le(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolMatrix mx_el_ne(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolMatrix mx_el_or(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:88
boolMatrix mx_el_and(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:88
boolMatrix mx_el_gt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolMatrix mx_el_eq(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolMatrix mx_el_lt(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolMatrix mx_el_ge(const boolMatrix &m1, const boolMatrix &m2)
Definition: boolMatrix.cc:91
boolNDArray mx_el_or_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
boolNDArray mx_el_and_not(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
boolNDArray mx_el_not_and(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
boolNDArray mx_el_not_or(const boolNDArray &m1, const boolNDArray &m2)
Definition: boolNDArray.cc:122
FloatMatrix transpose(void) const
Definition: fMatrix.h:139
MatrixType matrix_type(void) const
Definition: ov-base-mat.h:131
int ndims(void) const
Definition: ov-base-mat.h:116
FloatNDArray float_array_value(bool=false) const
Definition: ov-ch-mat.h:123
FloatMatrix float_matrix_value(bool=false) const
Definition: ov-ch-mat.h:117
FloatNDArray float_array_value(bool=false) const
FloatMatrix float_matrix_value(bool=false) const
void error(const char *fmt,...)
Definition: error.cc:968
@ blas_no_trans
Definition: mx-defs.h:110
@ blas_trans
Definition: mx-defs.h:111
octave_int< T > pow(const octave_int< T > &a, const octave_int< T > &b)
void install_fm_fm_ops(octave::type_info &ti)
Definition: op-fm-fm.cc:193
const octave_base_value & a2
return octave_value(v1.char_array_value() . concat(v2.char_array_value(), ra_idx),((a1.is_sq_string()||a2.is_sq_string()) ? '\'' :'"'))
const octave_char_matrix & v2
#define DEFNDASSIGNOP_FN(name, t1, t2, e, f)
Definition: ops.h:112
#define DEFNDBINOP_OP(name, t1, t2, e1, e2, op)
Definition: ops.h:276
#define INSTALL_NCUNOP_TI(ti, op, t, f)
Definition: ops.h:51
#define DEFNULLASSIGNOP_FN(name, t, f)
Definition: ops.h:100
#define DEFNDBINOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:301
#define DEFBINOPX(name, t1, t2)
Definition: ops.h:225
#define DEFNDASSIGNOP_FNOP(name, t1, t2, f, fnop)
Definition: ops.h:141
#define DEFBINOP(name, t1, t2)
Definition: ops.h:230
#define DEFNDUNOP_OP(name, t, e, op)
Definition: ops.h:191
#define DEFBINOP_OP(name, t1, t2, op)
Definition: ops.h:235
#define DEFNCUNOP_METHOD(name, t, method)
Definition: ops.h:217
#define INSTALL_BINOP_TI(ti, op, t1, t2, f)
Definition: ops.h:55
#define DEFNDCATOP_FN(name, t1, t2, e1, e2, f)
Definition: ops.h:348
#define DEFUNOP(name, t)
Definition: ops.h:179
#define INSTALL_CATOP_TI(ti, t1, t2, f)
Definition: ops.h:60
#define INSTALL_UNOP_TI(ti, op, t, f)
Definition: ops.h:47
#define DEFNDASSIGNOP_OP(name, t1, t2, f, op)
Definition: ops.h:126
#define INSTALL_ASSIGNOP_TI(ti, op, t1, t2, f)
Definition: ops.h:64
octave_value op_ne(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1579
octave_value op_el_ldiv(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1584
octave_value op_uplus(const octave_value &a)
Definition: ov.h:1537
octave_value op_add(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1566
octave_value op_gt(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1578
octave_value op_uminus(const octave_value &a)
Definition: ov.h:1538
octave_value op_el_div(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1582
octave_value op_mul_herm(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1600
octave_value op_transpose(const octave_value &a)
Definition: ov.h:1540
octave_value op_el_or(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1586
octave_value op_sub(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1567
octave_value op_mul(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1568
octave_value op_hermitian(const octave_value &a)
Definition: ov.h:1541
octave_value op_le(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1575
octave_value op_el_and(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1585
octave_value op_herm_mul(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1599
octave_value op_eq(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1576
octave_value op_el_pow(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1583
octave_value op_not(const octave_value &a)
Definition: ov.h:1536
octave_value op_ldiv(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1572
octave_value op_pow(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1571
octave_value op_ge(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1577
octave_value op_el_mul(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1581
octave_value op_div(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1569
octave_value op_trans_mul(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1597
octave_value op_mul_trans(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1598
octave_value op_lt(const octave_value &a1, const octave_value &a2)
Definition: ov.h:1574
Matrix xdiv(const Matrix &a, const SparseMatrix &b, MatrixType &typ)
Definition: sparse-xdiv.cc:135
Matrix xleftdiv(const SparseMatrix &a, const Matrix &b, MatrixType &typ)
Definition: sparse-xdiv.cc:466
octave_value elem_xpow(double a, const SparseMatrix &b)
Definition: sparse-xpow.cc:249
static void transpose(octave_idx_type N, const octave_idx_type *ridx, const octave_idx_type *cidx, octave_idx_type *ridx2, octave_idx_type *cidx2)
Definition: symrcm.cc:389