tensor-0.1.0
Main Page
Related Pages
Modules
Namespaces
Data Structures
All
Data Structures
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Groups
Pages
tensor_norm0_d.cc
1
/*
2
Copyright (c) 2010 Juan Jose Garcia Ripoll
3
4
Tensor is free software; you can redistribute it and/or modify it
5
under the terms of the GNU Library General Public License as published
6
by the Free Software Foundation; either version 2 of the License, or
7
(at your option) any later version.
8
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
GNU Library General Public License for more details.
13
14
You should have received a copy of the GNU General Public License along
15
with this program; if not, write to the Free Software Foundation, Inc.,
16
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
*/
18
19
#define TENSOR_LOAD_IMPL
20
#include <tensor/tensor.h>
21
22
namespace
tensor {
23
24
double
norm0(
const
RTensor &r)
25
{
26
double
output = 0;
27
for
(RTensor::const_iterator it = r.begin(); it != r.end(); ++it) {
28
output = std::max(output, abs(*it));
29
}
30
return
output;
31
}
32
33
}
// namespace tensor
src
tensor
tensor_norm0_d.cc
Generated on Tue Jun 10 2014 10:24:16 for tensor-0.1.0 by
1.8.6