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-cs-cm.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 "gripes.h"
28 #include "oct-obj.h"
29 #include "ov.h"
30 #include "ov-complex.h"
31 #include "ov-cx-mat.h"
32 #include "ov-typeinfo.h"
33 #include "ops.h"
34 #include "xdiv.h"
35 #include "xpow.h"
36 
37 // complex scalar by complex matrix ops.
38 
39 DEFNDBINOP_OP (add, complex, complex_matrix, complex, complex_array, +)
40 DEFNDBINOP_OP (sub, complex, complex_matrix, complex, complex_array, -)
41 DEFNDBINOP_OP (mul, complex, complex_matrix, complex, complex_array, *)
42 
43 DEFBINOP (div, complex, complex_matrix)
44 {
46 
49  MatrixType typ = v2.matrix_type ();
50 
51  ComplexMatrix ret = xdiv (m1, m2, typ);
52 
53  v2.matrix_type (typ);
54  return ret;
55 }
56 
57 DEFBINOP_FN (pow, complex, complex_matrix, xpow)
58 
59 DEFBINOP (ldiv, complex, complex_matrix)
60 {
62 
64 
65  if (d == 0.0)
67 
68  return octave_value (v2.complex_array_value () / d);
69 }
70 
71 DEFNDCMPLXCMPOP_FN (lt, complex, complex_matrix, complex, complex_array,
73 DEFNDCMPLXCMPOP_FN (le, complex, complex_matrix, complex, complex_array,
75 DEFNDCMPLXCMPOP_FN (eq, complex, complex_matrix, complex, complex_array,
77 DEFNDCMPLXCMPOP_FN (ge, complex, complex_matrix, complex, complex_array,
79 DEFNDCMPLXCMPOP_FN (gt, complex, complex_matrix, complex, complex_array,
81 DEFNDCMPLXCMPOP_FN (ne, complex, complex_matrix, complex, complex_array,
83 
84 DEFNDBINOP_OP (el_mul, complex, complex_matrix, complex, complex_array, *)
85 DEFNDBINOP_FN (el_div, complex, complex_matrix, complex, complex_array,
87 DEFNDBINOP_FN (el_pow, complex, complex_matrix, complex, complex_array,
89 
90 DEFBINOP (el_ldiv, complex, complex_matrix)
91 {
93 
95 
96  if (d == 0.0)
98 
99  return octave_value (v2.complex_array_value () / d);
100 }
101 
102 DEFNDBINOP_FN (el_and, complex, complex_matrix, complex, complex_array,
104 DEFNDBINOP_FN (el_or, complex, complex_matrix, complex, complex_array,
106 
107 DEFNDCATOP_FN (cs_cm, complex, complex_matrix, complex_array, complex_array,
109 
110 DEFCONV (complex_matrix_conv, complex, complex_matrix)
111 {
112  CAST_CONV_ARG (const octave_complex&);
113 
114  return new octave_complex_matrix (v.complex_matrix_value ());
115 }
116 
117 void
119 {
138 
140 
143 
144  INSTALL_WIDENOP (octave_complex, octave_complex_matrix, complex_matrix_conv);
145 }