]> www.ginac.de Git - ginac.git/blob - ginac/matrix.h
Remove 'level' argument of normal().
[ginac.git] / ginac / matrix.h
1 /** @file matrix.h
2  *
3  *  Interface to symbolic matrices */
4
5 /*
6  *  GiNaC Copyright (C) 1999-2016 Johannes Gutenberg University Mainz, Germany
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef GINAC_MATRIX_H
24 #define GINAC_MATRIX_H
25
26 #include "basic.h"
27 #include "ex.h"
28 #include "archive.h"
29 #include "compiler.h"
30
31 #include <string>
32 #include <vector>
33
34 namespace GiNaC {
35
36 /** Helper template to allow initialization of matrices via an overloaded
37  *  comma operator (idea stolen from Blitz++). */
38 template <typename T, typename It>
39 class matrix_init {
40 public:
41         matrix_init(It i) : iter(i) {}
42
43         matrix_init<T, It> operator,(const T & x)
44         {
45                 *iter = x;
46                 return matrix_init<T, It>(++iter);
47         }
48
49         // The following specializations produce much tighter code than the
50         // general case above
51
52         matrix_init<T, It> operator,(int x)
53         {
54                 *iter = T(x);
55                 return matrix_init<T, It>(++iter);
56         }
57
58         matrix_init<T, It> operator,(unsigned int x)
59         {
60                 *iter = T(x);
61                 return matrix_init<T, It>(++iter);
62         }
63
64         matrix_init<T, It> operator,(long x)
65         {
66                 *iter = T(x);
67                 return matrix_init<T, It>(++iter);
68         }
69
70         matrix_init<T, It> operator,(unsigned long x)
71         {
72                 *iter = T(x);
73                 return matrix_init<T, It>(++iter);
74         }
75
76         matrix_init<T, It> operator,(double x)
77         {
78                 *iter = T(x);
79                 return matrix_init<T, It>(++iter);
80         }
81
82         matrix_init<T, It> operator,(const symbol & x)
83         {
84                 *iter = T(x);
85                 return matrix_init<T, It>(++iter);
86         }
87
88 private:
89         matrix_init();
90         It iter;
91 };
92
93
94 /** Symbolic matrices. */
95 class matrix : public basic
96 {
97         GINAC_DECLARE_REGISTERED_CLASS(matrix, basic)
98         
99         // other constructors
100 public:
101         matrix(unsigned r, unsigned c);
102         matrix(unsigned r, unsigned c, const lst & l);
103         matrix(std::initializer_list<std::initializer_list<ex>> l);
104
105         matrix_init<ex, exvector::iterator> operator=(const ex & x) deprecated;
106 protected:
107         matrix(unsigned r, unsigned c, const exvector & m2);
108         matrix(unsigned r, unsigned c, exvector && m2);
109         // functions overriding virtual functions from base classes
110 public:
111         size_t nops() const override;
112         ex op(size_t i) const override;
113         ex & let_op(size_t i) override;
114         ex evalm() const override {return *this;}
115         ex subs(const exmap & m, unsigned options = 0) const override;
116         ex eval_indexed(const basic & i) const override;
117         ex add_indexed(const ex & self, const ex & other) const override;
118         ex scalar_mul_indexed(const ex & self, const numeric & other) const override;
119         bool contract_with(exvector::iterator self, exvector::iterator other, exvector & v) const override;
120         ex conjugate() const override;
121         ex real_part() const override;
122         ex imag_part() const override;
123
124         /** Save (a.k.a. serialize) object into archive. */
125         void archive(archive_node& n) const override;
126         /** Read (a.k.a. deserialize) object from archive. */
127         void read_archive(const archive_node& n, lst& syms) override;
128 protected:
129         bool match_same_type(const basic & other) const override;
130         unsigned return_type() const override { return return_types::noncommutative; };
131         
132         // non-virtual functions in this class
133 public:
134         unsigned rows() const        /// Get number of rows.
135                 { return row; }
136         unsigned cols() const        /// Get number of columns.
137                 { return col; }
138         matrix add(const matrix & other) const;
139         matrix sub(const matrix & other) const;
140         matrix mul(const matrix & other) const;
141         matrix mul(const numeric & other) const;
142         matrix mul_scalar(const ex & other) const;
143         matrix pow(const ex & expn) const;
144         const ex & operator() (unsigned ro, unsigned co) const;
145         ex & operator() (unsigned ro, unsigned co);
146         matrix & set(unsigned ro, unsigned co, const ex & value) { (*this)(ro, co) = value; return *this; }
147         matrix transpose() const;
148         ex determinant(unsigned algo = determinant_algo::automatic) const;
149         ex trace() const;
150         ex charpoly(const ex & lambda) const;
151         matrix inverse() const;
152         matrix solve(const matrix & vars, const matrix & rhs,
153                      unsigned algo = solve_algo::automatic) const;
154         unsigned rank() const;
155         bool is_zero_matrix() const;
156 protected:
157         ex determinant_minor() const;
158         int gauss_elimination(const bool det = false);
159         int division_free_elimination(const bool det = false);
160         int fraction_free_elimination(const bool det = false);
161         int pivot(unsigned ro, unsigned co, bool symbolic = true);
162
163         void print_elements(const print_context & c, const char *row_start, const char *row_end, const char *row_sep, const char *col_sep) const;
164         void do_print(const print_context & c, unsigned level) const;
165         void do_print_latex(const print_latex & c, unsigned level) const;
166         void do_print_python_repr(const print_python_repr & c, unsigned level) const;
167         
168 // member variables
169 protected:
170         unsigned row;             ///< number of rows
171         unsigned col;             ///< number of columns
172         exvector m;               ///< representation (cols indexed first)
173 };
174 GINAC_DECLARE_UNARCHIVER(matrix); 
175
176 // First step of initialization of matrix with a comma-separated sequence
177 // of expressions. Subsequent steps are handled by matrix_init<>::operator,().
178 inline matrix_init<ex, exvector::iterator> matrix::operator=(const ex & x)
179 {
180         m[0] = x;
181         return matrix_init<ex, exvector::iterator>(++m.begin());
182 }
183
184 // wrapper functions around member functions
185
186 inline size_t nops(const matrix & m)
187 { return m.nops(); }
188
189 inline ex expand(const matrix & m, unsigned options = 0)
190 { return m.expand(options); }
191
192 inline ex evalf(const matrix & m)
193 { return m.evalf(); }
194
195 inline unsigned rows(const matrix & m)
196 { return m.rows(); }
197
198 inline unsigned cols(const matrix & m)
199 { return m.cols(); }
200
201 inline matrix transpose(const matrix & m)
202 { return m.transpose(); }
203
204 inline ex determinant(const matrix & m, unsigned options = determinant_algo::automatic)
205 { return m.determinant(options); }
206
207 inline ex trace(const matrix & m)
208 { return m.trace(); }
209
210 inline ex charpoly(const matrix & m, const ex & lambda)
211 { return m.charpoly(lambda); }
212
213 inline matrix inverse(const matrix & m)
214 { return m.inverse(); }
215
216 inline unsigned rank(const matrix & m)
217 { return m.rank(); }
218
219 // utility functions
220
221 /** Convert list of lists to matrix. */
222 extern ex lst_to_matrix(const lst & l);
223
224 /** Convert list of diagonal elements to matrix. */
225 extern ex diag_matrix(const lst & l);
226 extern ex diag_matrix(std::initializer_list<ex> l);
227
228 /** Create an r times c unit matrix. */
229 extern ex unit_matrix(unsigned r, unsigned c);
230
231 /** Create a x times x unit matrix. */
232 inline ex unit_matrix(unsigned x)
233 { return unit_matrix(x, x); }
234
235 /** Create an r times c matrix of newly generated symbols consisting of the
236  *  given base name plus the numeric row/column position of each element.
237  *  The base name for LaTeX output is specified separately. */
238 extern ex symbolic_matrix(unsigned r, unsigned c, const std::string & base_name, const std::string & tex_base_name);
239
240 /** Return the reduced matrix that is formed by deleting the rth row and cth
241  *  column of matrix m. The determinant of the result is the Minor r, c. */
242 extern ex reduced_matrix(const matrix& m, unsigned r, unsigned c);
243
244 /** Return the nr times nc submatrix starting at position r, c of matrix m. */
245 extern ex sub_matrix(const matrix&m, unsigned r, unsigned nr, unsigned c, unsigned nc);
246
247 /** Create an r times c matrix of newly generated symbols consisting of the
248  *  given base name plus the numeric row/column position of each element. */
249 inline ex symbolic_matrix(unsigned r, unsigned c, const std::string & base_name)
250 { return symbolic_matrix(r, c, base_name, base_name); }
251
252 } // namespace GiNaC
253
254 #endif // ndef GINAC_MATRIX_H