Commit 1555c55c authored by Peter Jansweijer's avatar Peter Jansweijer

changed colors

parent 7a5ba699
......@@ -226,8 +226,8 @@ def average_edge_to_sfd(scope, num_meas, bit_width, expect_max_edge, expect_max_
ax = cor.add_subplot(111)
ax.set_xlabel('Sample')
ax.set_ylabel('Correlation')
ax.plot(c_sfd_x,c_sfd_y)
ax.plot(c_edge_x,c_edge_y)
ax.plot(c_sfd_x,c_sfd_y, color = 'dodgerblue')
ax.plot(c_edge_x,c_edge_y, color = 'darkblue')
#ax.plot(c_edge_x1,c_edge_y1)
plt.draw()
......@@ -235,8 +235,8 @@ def average_edge_to_sfd(scope, num_meas, bit_width, expect_max_edge, expect_max_
ax = wv_34.add_subplot(111)
ax.set_xlabel('Time')
ax.set_ylabel('Volt')
ax.plot(x1,y1)
ax.plot(x3,y_diff)
ax.plot(x3,y_diff, color = 'dodgerblue')
ax.plot(x1,y1, color='darkblue')
plt.draw()
d_edge= sample_period * dd.peak_position(c_edge_x,c_edge_y,x_estimate = expect_max_edge)
......
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