changeset 70:7a979736bbfc

stubbing
author Jeff Hammel <k0scist@gmail.com>
date Sat, 28 Feb 2015 17:00:35 -0800
parents 5dceb1d05a29
children 9a2674b32754
files numerics/histogram.py
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/numerics/histogram.py	Sat Feb 28 16:59:08 2015 -0800
+++ b/numerics/histogram.py	Sat Feb 28 17:00:35 2015 -0800
@@ -38,6 +38,9 @@
         self.data = self.OrderedDict(zip(bins[:-1],
                                          bins[1:]))
 
+    def add(self, *values):
+        """add values to the histogram"""
+
     def __iadd__(self, value):
         return self