GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
op-fcm-fm.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1996-2013 John W. Eaton
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include "mx-fcm-fm.h"
28 #include "mx-fm-fcm.h"
29 #include "mx-fcnda-fnda.h"
30 #include "mx-fnda-fcnda.h"
31 
32 #include "gripes.h"
33 #include "oct-obj.h"
34 #include "ov.h"
35 #include "ov-cx-mat.h"
36 #include "ov-flt-cx-mat.h"
37 #include "ov-flt-re-mat.h"
38 #include "ov-re-mat.h"
39 #include "ov-typeinfo.h"
40 #include "ops.h"
41 #include "xdiv.h"
42 #include "xpow.h"
43 
44 // complex matrix by matrix ops.
45 
46 DEFNDBINOP_OP (add, float_complex_matrix, float_matrix, float_complex_array,
47  float_array, +)
48 DEFNDBINOP_OP (sub, float_complex_matrix, float_matrix, float_complex_array,
49  float_array, -)
50 
51 DEFBINOP_OP (mul, float_complex_matrix, float_matrix, *)
52 
53 DEFBINOP (mul_trans, float_complex_matrix, float_matrix)
54 {
56  const octave_float_matrix&);
57 
60 
62  xgemm (imag (m1), m2, blas_no_trans, blas_trans));
63 }
64 
65 DEFBINOP (div, float_complex_matrix, float_matrix)
66 {
68  const octave_float_matrix&);
69  MatrixType typ = v2.matrix_type ();
70 
72  v2.float_matrix_value (), typ);
73 
74  v2.matrix_type (typ);
75  return ret;
76 }
77 
78 
79 DEFBINOPX (pow, float_complex_matrix, float_matrix)
80 {
81  error ("can't do A ^ B for A and B both matrices");
82  return octave_value ();
83 }
84 
85 DEFBINOP (ldiv, float_complex_matrix, float_matrix)
86 {
88  const octave_float_matrix&);
89  MatrixType typ = v1.matrix_type ();
90 
92  v2.float_matrix_value (), typ);
93 
94  v1.matrix_type (typ);
95  return ret;
96 }
97 
98 DEFNDCMPLXCMPOP_FN (lt, float_complex_matrix, float_matrix,
99  float_complex_array, float_array, mx_el_lt)
100 DEFNDCMPLXCMPOP_FN (le, float_complex_matrix, float_matrix,
101  float_complex_array, float_array, mx_el_le)
102 DEFNDCMPLXCMPOP_FN (eq, float_complex_matrix, float_matrix,
103  float_complex_array, float_array, mx_el_eq)
104 DEFNDCMPLXCMPOP_FN (ge, float_complex_matrix, float_matrix,
105  float_complex_array, float_array, mx_el_ge)
106 DEFNDCMPLXCMPOP_FN (gt, float_complex_matrix, float_matrix,
107  float_complex_array, float_array, mx_el_gt)
108 DEFNDCMPLXCMPOP_FN (ne, float_complex_matrix, float_matrix,
109  float_complex_array, float_array, mx_el_ne)
110 
111 DEFNDBINOP_FN (el_mul, float_complex_matrix, float_matrix,
112  float_complex_array, float_array, product)
113 DEFNDBINOP_FN (el_div, float_complex_matrix, float_matrix,
114  float_complex_array, float_array, quotient)
115 DEFNDBINOP_FN (el_pow, float_complex_matrix, float_matrix,
116  float_complex_array, float_array, elem_xpow)
117 
118 DEFBINOP (el_ldiv, float_complex_matrix, float_matrix)
119 {
121  const octave_float_matrix&);
122 
124 }
125 
126 DEFNDBINOP_FN (el_and, float_complex_matrix, float_matrix,
127  float_complex_array, float_array, mx_el_and)
128 DEFNDBINOP_FN (el_or, float_complex_matrix, float_matrix,
129  float_complex_array, float_array, mx_el_or)
130 
131 DEFNDCATOP_FN (fcm_fm, float_complex_matrix, float_matrix,
132  float_complex_array, float_array, concat)
133 
134 DEFNDCATOP_FN (cm_fm, complex_matrix, float_matrix,
135  float_complex_array, float_array, concat)
136 
137 DEFNDCATOP_FN (fcm_m, float_complex_matrix, matrix,
138  float_complex_array, float_array, concat)
139 
140 DEFNDASSIGNOP_FN (assign, float_complex_matrix, float_matrix,
141  float_complex_array, assign)
142 DEFNDASSIGNOP_FN (dbl_assign, complex_matrix, float_matrix,
143  complex_array, assign)
144 
145 void
147 {
154  octave_float_matrix, ldiv);
162  octave_float_matrix, el_mul);
164  octave_float_matrix, el_div);
166  octave_float_matrix, el_pow);
168  octave_float_matrix, el_ldiv);
170  octave_float_matrix, el_and);
172  octave_float_matrix, el_or);
177 
181 
183  octave_float_matrix, assign);
185  octave_float_matrix, dbl_assign);
186 }