Exemplo n.º 1
0
 def exp(self):
     return Uncertainty(*err1d.exp(self.x, self.variance))
Exemplo n.º 2
0
 def exp(self):
     if (not self.variance is None) and hasattr(other,'variance') and not other.variance is None:
         return Measurement(*err1d.exp(self.x,self.variance))
     else:
         return Measurement(numpy.exp(self.x),None)
Exemplo n.º 3
0
 def exp(self):
     return Measurement(*err1d.exp(self.x,self.variance))
Exemplo n.º 4
0
 def exp(self):
     return Uncertainty(*err1d.exp(self.x,self.variance))
Exemplo n.º 5
0
 def exp(self):
     return Measurement(*err1d.exp(self.x, self.variance))