背景を気にしない場合は、一番下の行にスキップできます。
私はPythonで次のコードを持っています:
ratio = (point.threshold - self.points[0].value) / (self.points[1].value - self.points[0].value)
これは私に間違った価値を与えています。たとえば、次の場合:
threshold: 25.0
self.points[0].value: 46
self.points[1].value: 21
私が得た:
ratio: -0.000320556853048
これは間違っています。
self.points[0].value
調べてみると、self.points[1].value] are of the type
それと numpy.uint16`に気づいたので、次のようになりました。
21 - 46 = 65511
の型を定義したことはありませんがpoint.threshold
。当てただけです。プレーンなバニラだったと思いint
ます。
結論
uint
2 つの s の減算に署名を強制するにはどうすればよいですか?