Bi-monthly release with major changes to INDI properties and client API in addition to new drivers and improvements.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
from pylab import *
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
def fplot(points, title):
x = [z[0] for z in points]
y = [z[1] for z in points]
fig = plt.figure()
axes = fig.add_axes([0.1, 0.1, 0.8, 0.8]) # left, bottom, width, height (range 0 to 1)
axes.plot(x, y, 'r', marker='o')
axes.set_xlabel('position')
axes.set_ylabel('HFR')
axes.set_title(title);
points=[(34095, 5.57398), (34070, 4.12424), (34045, 2.38664), (34020, 1.73163), (33995, 1.27697), (33970, 1.30088), (33945, 2.36508), (33920, 3.63688), (33895, 5.4582), (34043, 2.40566), (34031, 1.958), (34019, 1.62847), (34007, 1.42028), (33995, 1.2282)];iterations=14;duration=133;solution=33995;HFR=1.2282;filter='Red'
ftitle='Wouter 01-15T21:27 Step 25 ' +str(iterations)+' iterations, '+str(duration)+'s, '+'position='+str(solution)+' HFR='+str(HFR)+' filter='+str(filter)
fplot(points, ftitle)
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.