Commit 390674da authored by Federico Asara's avatar Federico Asara

Better float to string conversion format for maximum values of DNL and INL.

parent 6e5b0f91
......@@ -50,8 +50,8 @@ class SingleToneSignal(Signal):
def items(self):
output = super(SingleToneSignal, self).items()
output.append(('Max DNL', "%.f ", self.maxDNL))
output.append(('Max INL', "%.f ", self.maxINL))
output.append(('Max DNL', "%f ", self.maxDNL))
output.append(('Max INL', "%f ", self.maxINL))
output.append(('Theoretical SNR', "%.2f dB", self.thSNR))
output.append(('Process Gain', "%.2f dB", self.processGain))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment