TwiceAsNice
2019-02-18
|
Functions | |
def | read_datafile (_fileName) |
Variables | |
def | dataInit = read_datafile('./trajectoryInit.fits') |
def | dataCorrected = read_datafile('./trajectoryCorrected.fits') |
fig = plt.figure() | |
ax1 = fig.add_subplot(111) | |
x1 = range(len(dataInit)) | |
def | y1 = dataInit |
c | |
linestyle | |
marker | |
markevery | |
label | |
x2 = range(len(dataCorrected)) | |
def | y2 = dataCorrected |
leg = ax1.legend() | |
def | dataCorrect = read_datafile('./trajCorrect.csv') |
def | dataWrong = read_datafile('./trajWrong.csv') |
def compareTraj.read_datafile | ( | _fileName | ) |
compareTraj.ax1 = fig.add_subplot(111) |
compareTraj.c |
def compareTraj.dataCorrect = read_datafile('./trajCorrect.csv') |
def compareTraj.dataCorrected = read_datafile('./trajectoryCorrected.fits') |
def compareTraj.dataInit = read_datafile('./trajectoryInit.fits') |
def compareTraj.dataWrong = read_datafile('./trajWrong.csv') |
compareTraj.fig = plt.figure() |
compareTraj.label |
compareTraj.leg = ax1.legend() |
compareTraj.linestyle |
compareTraj.marker |
compareTraj.markevery |
def compareTraj.x1 = range(len(dataInit)) |
def compareTraj.x2 = range(len(dataCorrected)) |
def compareTraj.y1 = dataInit |
def compareTraj.y2 = dataCorrected |