Fermat
variance.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2016, NVIDIA Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of NVIDIA Corporation nor the
13  * names of its contributors may be used to endorse or promote products
14  * derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
34 #pragma once
35 
36 #include <cugar/basic/types.h>
37 
38 
39 namespace cugar {
40 
45 template <typename T>
49 {
50  CUGAR_HOST_DEVICE
51  Variance_estimator() : m_mean(0.0f), m_M2(0.0f), m_n(0.0f) {}
52 
53  CUGAR_HOST_DEVICE
54  Variance_estimator& operator=(const Variance_estimator& other)
55  {
56  m_n = other.m_n;
57  m_mean = other.m_mean;
58  m_M2 = other.m_M2;
59  return *this;
60  }
61 
62  CUGAR_HOST_DEVICE
63  Variance_estimator& operator+=(const float x)
64  {
65  m_n += 1.0f;
66  const T delta = x - m_mean;
67  m_mean += delta / m_n;
68  const T delta2 = x - m_mean;
69  m_M2 += delta*delta2;
70  return *this;
71  }
72 
73  CUGAR_HOST_DEVICE
74  float mean() const { return m_mean; }
75 
76  CUGAR_HOST_DEVICE
77  float variance() const { return m_n > 1 ? m_M2 / (m_n - 1) : 0.0f; }
78 
79  T m_mean;
80  T m_M2;
81  float m_n;
82 };
83 
87 } // namespace cugar
Define a vector_view POD type and plain_view() for std::vector.
Definition: diff.h:38
Definition: variance.h:48