tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
matrix_diag.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 <cassert>
21 #include <tensor/tensor.h>
22 
23 namespace tensor {
24 
25  template<typename n> inline
26  const Tensor<n> do_diag(const Tensor<n> &a, int which, int rows, int cols)
27  {
28  Tensor<n> output(rows, cols);
29  output.fill_with_zeros();
30  index r0, c0;
31  if (which < 0) {
32  r0 = -which;
33  c0 = 0;
34  } else {
35  r0 = 0;
36  c0 = which;
37  }
38  index l = std::min<index>(rows - r0, cols - c0);
39  if (l < 0) {
40  std::cerr << "In diag(a,which,...) the value of WHICH exceeds the size of the matrix"
41  << std::endl;
42  abort();
43  }
44  if (l != a.size()) {
45  std::cerr << "In diag(a,...) the vector A has too few/many elements."
46  << std::endl;
47  abort();
48  }
49  for (size_t i = 0; i < (size_t)l; i++) {
50  output.at(r0+i,c0+i) = a[i];
51  }
52  return output;
53  }
54 
55 } // namespace tensor