tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
tensor_scale_z.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_scale.cc"
21 
22 namespace tensor {
23 
31  const Tensor<cdouble> scale(const Tensor<cdouble> &t, int ndx,
32  const Tensor<cdouble> &v)
33  {
34  index d1, d2, d3;
35  Tensor<cdouble> output(t.dimensions());
36  ndx = normalize_index(ndx, t.rank());
37  surrounding_dimensions(t.dimensions(), ndx, &d1, &d2, &d3);
38  if (d2 != v.size()) {
39  std::cerr << "In scale() the dimension " << ndx <<
40  " of the tensor does not match the length " <<
41  v.size() << " of the scale vector" << std::endl;
42  abort();
43  }
44  doscale(output.begin(), t.begin_const(), v.begin_const(), d1, d2, d3);
45  return output;
46  }
47 
48  void scale_inplace(Tensor<cdouble> &t, int ndx, const Tensor<cdouble> &v)
49  {
50  index d1, d2, d3;
51  surrounding_dimensions(t.dimensions(), normalize_index(ndx, t.rank()),
52  &d1, &d2, &d3);
53  if (d2 != v.size()) {
54  std::cerr << "In scale() the dimension " << ndx <<
55  " of the tensor does not match the length " <<
56  v.size() << " of the scale vector" << std::endl;
57  abort();
58  }
59  doscale(t.begin(), v.begin_const(), d1, d2, d3);
60  }
61 
62  const Tensor<cdouble> scale(const Tensor<cdouble> &t, int ndx,
63  const Tensor<double> &v)
64  {
65  return scale(t, ndx, to_complex(v));
66  }
67 
68  void scale_inplace(Tensor<cdouble> &t, int ndx, const Tensor<double> &v)
69  {
70  scale_inplace(t, ndx, to_complex(v));
71  }
72 
73 } // namespace tensor
int rank() const
Number of Tensor indices.
Definition: tensor.h:119
const_iterator begin_const() const
Iterator at the beginning for const objects.
Definition: tensor.h:260
const Tensor< cdouble > scale(const Tensor< cdouble > &t, int ndx, const Tensor< cdouble > &v)
Hadamard product of a tensor times a vector.
index size() const
Returns total number of elements in Tensor.
Definition: tensor.h:114
const Indices & dimensions() const
Return Tensor dimensions.
Definition: tensor.h:121