Commit 15a151ed authored by Matthieu Cattin's avatar Matthieu Cattin

Fix float formating in test09 log.

parent ce9e14ca
......@@ -263,7 +263,7 @@ def main (default_directory='.'):
for ch in range(1,NB_CHANNELS+1):
print('Channel %d frequency response')%(ch)
for i in range(len(points)):
print('%2.3f, %d')%(points[i][0], ch_diff[i*4+(ch-1)])
print('%2.3f, %d')%(points[i][0]/1E6, ch_diff[i*4+(ch-1)])
# The following code is to show a graph of the test results
# !! Don't forget to import numpy and pylab !!
......
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