tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
linspace_d.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/tensor.h>
21 #include "linspace.hpp"
22 
23 namespace tensor {
24 
26  const RTensor
27  linspace(double min, double max, index n)
28  {
29  RTensor a(1); a.at(0) = min;
30  RTensor b(1); b.at(0) = max;
31  return linspace(a, b, n);
32  }
33 
35  const RTensor
36  linspace(const RTensor &min, const RTensor &max, index n)
37  {
38  return do_linspace(min, max, n);
39  }
40 
41 }
const RTensor linspace(double min, double max, index n=100)
Vector of 'n' equally spaced numbers in the interval [min, max].
Definition: linspace_d.cc:27
Real Tensor with elements of type "double".
Definition: tensor.h:349
elt_t & at(index i)
Return a mutable reference to an element of a 1D Tensor.