Skip to content
Snippets Groups Projects
Commit 3eefc93e authored by Beat Küng's avatar Beat Küng
Browse files

mixer_multirotor.py: avoid scientific notation for vector printf

makes it easier to compare.
parent 447ed18a
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,8 @@ else:
u_new_sat = np.maximum(u_new, np.matlib.zeros(u.size).T)
u_new_sat = np.minimum(u_new_sat, np.matlib.ones(u.size).T)
np.set_printoptions(suppress=True)
# Display some results
print("u = \n{}\n".format(u))
print("u_new = \n{}\n".format(u_new))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment