代码拉取完成,页面将自动刷新
import math
class TolLen:
def __init__(self, a, b, type=0):
if(type == 0):
self.min = a
self.max = b
self.nom = (self.min + self.max) / 2
self.tol = (self.max - self.min) / 2
else:
self.nom = a
self.tol = b
self.update()
def update(self):
self.min = self.nom - self.tol
self.max = self.nom + self.tol
def __add__(self, x):
nom = self.nom + x.nom
tol = math.sqrt(self.tol**2 + x.tol**2)
return TolLen(nom, tol, 1)
def __sub__(self, x):
nom = self.nom - x.nom
tol = math.sqrt(self.tol**2 + x.tol**2)
return TolLen(nom, tol, 1)
def __repr__(self):
return '({}, {})'.format(self.min, self.max)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。