tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
matrix_form.cc
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #include <tensor/io.h>
21 
22 namespace tensor {
23 
24  template<typename elt_t>
25  std::ostream &
26  MatrixForm<elt_t>::display(std::ostream &s) const
27  {
28  if (data.rank() > 2) {
29  std::cerr << "MatrixForm can only be used with two-dimensional tensors.\n";
30  abort();
31  } else if (data.rank() == 2) {
32  index rows = data.rows();
33  index cols = data.columns();
34  for (index i = 0; i < rows; i++) {
35  if (i == 0)
36  s << "[";
37  else
38  s << "\n ";
39  for (index j = 0; j < cols; j++) {
40  if (j) s << ", ";
41  s << data(i,j);
42  }
43  }
44  s << "]";
45  } else if (data.rank() == 1) {
46  for (index i = 0; i < data.size(); i++) {
47  if (i)
48  s << ", ";
49  else
50  s << "[";
51  s << data[i];
52  }
53  s << "]";
54  }
55  return s;
56  };
57 
58 } // namespace tensor
59