Mercurial > hg > octave-nkf
annotate src/OPERATORS/op-cm-m.cc @ 10884:cc2bc3f46cd4
fix assignment bug with lazy indices
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 11 Aug 2010 10:55:31 +0200 |
parents | ac4b97c6bf8b |
children | fd0a3ac60b0e |
rev | line source |
---|---|
2928 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2006, |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
9665
diff
changeset
|
4 2007, 2009 John W. Eaton |
2928 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2928 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2928 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 #include "mx-cm-m.h" | |
29 #include "mx-m-cm.h" | |
4544 | 30 #include "mx-cnda-nda.h" |
31 #include "mx-nda-cnda.h" | |
2928 | 32 |
33 #include "gripes.h" | |
4055 | 34 #include "oct-obj.h" |
2928 | 35 #include "ov.h" |
36 #include "ov-cx-mat.h" | |
37 #include "ov-re-mat.h" | |
38 #include "ov-typeinfo.h" | |
39 #include "ops.h" | |
40 #include "xdiv.h" | |
41 #include "xpow.h" | |
42 | |
43 // complex matrix by matrix ops. | |
44 | |
4550 | 45 DEFNDBINOP_OP (add, complex_matrix, matrix, complex_array, array, +) |
46 DEFNDBINOP_OP (sub, complex_matrix, matrix, complex_array, array, -) | |
4543 | 47 |
2928 | 48 DEFBINOP_OP (mul, complex_matrix, matrix, *) |
5785 | 49 |
9663
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
50 DEFBINOP (mul_trans, complex_matrix, matrix) |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
51 { |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
52 CAST_BINOP_ARGS (const octave_complex_matrix&, const octave_matrix&); |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
53 |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
54 ComplexMatrix m1 = v1.complex_matrix_value (); |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
55 Matrix m2 = v2.matrix_value (); |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
56 |
9665
1dba57e9d08d
use blas_trans_type for xgemm
Jaroslav Hajek <highegg@gmail.com>
parents:
9663
diff
changeset
|
57 return ComplexMatrix (xgemm (real (m1), m2, blas_no_trans, blas_trans), |
1dba57e9d08d
use blas_trans_type for xgemm
Jaroslav Hajek <highegg@gmail.com>
parents:
9663
diff
changeset
|
58 xgemm (imag (m1), m2, blas_no_trans, blas_trans)); |
9663
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
59 } |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
60 |
5785 | 61 DEFBINOP (div, complex_matrix, matrix) |
62 { | |
63 CAST_BINOP_ARGS (const octave_complex_matrix&, const octave_matrix&); | |
64 MatrixType typ = v2.matrix_type (); | |
65 | |
66 ComplexMatrix ret = xdiv (v1.complex_matrix_value (), | |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
9665
diff
changeset
|
67 v2.matrix_value (), typ); |
5785 | 68 |
69 v2.matrix_type (typ); | |
70 return ret; | |
71 } | |
72 | |
2928 | 73 |
74 DEFBINOPX (pow, complex_matrix, matrix) | |
75 { | |
76 error ("can't do A ^ B for A and B both matrices"); | |
77 return octave_value (); | |
78 } | |
79 | |
5785 | 80 DEFBINOP (ldiv, complex_matrix, matrix) |
81 { | |
82 CAST_BINOP_ARGS (const octave_complex_matrix&, const octave_matrix&); | |
83 MatrixType typ = v1.matrix_type (); | |
84 | |
85 ComplexMatrix ret = xleftdiv (v1.complex_matrix_value (), | |
9931
fb6b6fcafa62
untabify files in src/OPERATORS directory
John W. Eaton <jwe@octave.org>
parents:
9665
diff
changeset
|
86 v2.matrix_value (), typ); |
5785 | 87 |
88 v1.matrix_type (typ); | |
89 return ret; | |
90 } | |
2928 | 91 |
9588
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
92 DEFNDCMPLXCMPOP_FN (lt, complex_matrix, matrix, complex_array, array, mx_el_lt) |
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
93 DEFNDCMPLXCMPOP_FN (le, complex_matrix, matrix, complex_array, array, mx_el_le) |
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
94 DEFNDCMPLXCMPOP_FN (eq, complex_matrix, matrix, complex_array, array, mx_el_eq) |
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
95 DEFNDCMPLXCMPOP_FN (ge, complex_matrix, matrix, complex_array, array, mx_el_ge) |
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
96 DEFNDCMPLXCMPOP_FN (gt, complex_matrix, matrix, complex_array, array, mx_el_gt) |
319e2ab9b8ae
warn about the complex comparison ops
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
97 DEFNDCMPLXCMPOP_FN (ne, complex_matrix, matrix, complex_array, array, mx_el_ne) |
2928 | 98 |
4550 | 99 DEFNDBINOP_FN (el_mul, complex_matrix, matrix, complex_array, array, product) |
100 DEFNDBINOP_FN (el_div, complex_matrix, matrix, complex_array, array, quotient) | |
101 DEFNDBINOP_FN (el_pow, complex_matrix, matrix, complex_array, array, elem_xpow) | |
2928 | 102 |
103 DEFBINOP (el_ldiv, complex_matrix, matrix) | |
104 { | |
105 CAST_BINOP_ARGS (const octave_complex_matrix&, const octave_matrix&); | |
106 | |
4550 | 107 return quotient (v2.array_value (), v1.complex_array_value ()); |
2928 | 108 } |
109 | |
4550 | 110 DEFNDBINOP_FN (el_and, complex_matrix, matrix, complex_array, array, mx_el_and) |
111 DEFNDBINOP_FN (el_or, complex_matrix, matrix, complex_array, array, mx_el_or) | |
2928 | 112 |
4915 | 113 DEFNDCATOP_FN (cm_m, complex_matrix, matrix, complex_array, array, concat) |
114 | |
4686 | 115 DEFNDASSIGNOP_FN (assign, complex_matrix, matrix, complex_array, assign) |
2928 | 116 |
117 void | |
118 install_cm_m_ops (void) | |
119 { | |
3538 | 120 INSTALL_BINOP (op_add, octave_complex_matrix, octave_matrix, add); |
121 INSTALL_BINOP (op_sub, octave_complex_matrix, octave_matrix, sub); | |
122 INSTALL_BINOP (op_mul, octave_complex_matrix, octave_matrix, mul); | |
123 INSTALL_BINOP (op_div, octave_complex_matrix, octave_matrix, div); | |
124 INSTALL_BINOP (op_pow, octave_complex_matrix, octave_matrix, pow); | |
125 INSTALL_BINOP (op_ldiv, octave_complex_matrix, octave_matrix, ldiv); | |
126 INSTALL_BINOP (op_lt, octave_complex_matrix, octave_matrix, lt); | |
127 INSTALL_BINOP (op_le, octave_complex_matrix, octave_matrix, le); | |
128 INSTALL_BINOP (op_eq, octave_complex_matrix, octave_matrix, eq); | |
129 INSTALL_BINOP (op_ge, octave_complex_matrix, octave_matrix, ge); | |
130 INSTALL_BINOP (op_gt, octave_complex_matrix, octave_matrix, gt); | |
131 INSTALL_BINOP (op_ne, octave_complex_matrix, octave_matrix, ne); | |
132 INSTALL_BINOP (op_el_mul, octave_complex_matrix, octave_matrix, el_mul); | |
133 INSTALL_BINOP (op_el_div, octave_complex_matrix, octave_matrix, el_div); | |
134 INSTALL_BINOP (op_el_pow, octave_complex_matrix, octave_matrix, el_pow); | |
135 INSTALL_BINOP (op_el_ldiv, octave_complex_matrix, octave_matrix, el_ldiv); | |
136 INSTALL_BINOP (op_el_and, octave_complex_matrix, octave_matrix, el_and); | |
137 INSTALL_BINOP (op_el_or, octave_complex_matrix, octave_matrix, el_or); | |
9663
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
138 INSTALL_BINOP (op_mul_trans, octave_complex_matrix, octave_matrix, mul_trans); |
7e5b4de5fbfe
improve mixed real x complex ops
Jaroslav Hajek <highegg@gmail.com>
parents:
9588
diff
changeset
|
139 INSTALL_BINOP (op_mul_herm, octave_complex_matrix, octave_matrix, mul_trans); |
2928 | 140 |
4915 | 141 INSTALL_CATOP (octave_complex_matrix, octave_matrix, cm_m); |
142 | |
3538 | 143 INSTALL_ASSIGNOP (op_asn_eq, octave_complex_matrix, octave_matrix, assign); |
2928 | 144 } |