Exemplo n.º 1
0
 def __itruediv__(self, other):
     if isinstance(other, Uncertainty):
         self.x, self.variance = err1d.div_inplace(self.x, self.variance, other.x, other.variance)
     else:
         self.x /= other
         self.variance /= other ** 2
     return self
Exemplo n.º 2
0
 def __itruediv__(self, other):
     if isinstance(other, Uncertainty):
         self.x,self.variance \
             = err1d.div_inplace(self.x,self.variance,other.x,other.variance)
     else:
         self.x /= other
         self.variance /= other**2
     return self
Exemplo n.º 3
0
 def __itruediv__(self, other):
     if isinstance(other,Measurement):
         self.x,self.variance \
             = err1d.div_inplace(self.x,self.variance,other.x,other.variance)
     else:
         self.x /= other
         self.variance /= other**2
     return self