ZH: make _clock_ phase explicit in plot titling

This commit is contained in:
Eric Teunis de Boone 2023-01-24 15:24:38 +01:00
parent f3531402c5
commit 7a43fb15d4

View file

@ -70,7 +70,7 @@ if __name__ == "__main__":
# Show Matrix as figure
if True:
fig, ax = plt.subplots()
ax.set_title("Measured phase differences Baseline i,j")
ax.set_title("Measured clock phase differences Baseline i,j")
ax.set_ylabel("Antenna no. i")
ax.set_xlabel("Antenna no. j")
@ -93,7 +93,7 @@ if __name__ == "__main__":
# Show subtraction Matrix as figure
if True:
fig, ax = plt.subplots()
ax.set_title("Subtraction matrix i,j")
ax.set_title("Clock Phase Subtraction matrix i,j")
ax.set_ylabel("Antenna no. i")
ax.set_xlabel("Antenna no. j")
@ -122,7 +122,7 @@ if __name__ == "__main__":
# Show resulting matrix as figure
if True:
fig, axs = plt.subplots(2,1, sharex=True)
axs[0].set_title("Modified measured phase differences Baseline 0,j")
axs[0].set_title("Modified clock phase differences Baseline 0,j")
axs[0].set_ylabel("Antenna no. 0")
axs[-1].set_xlabel("Antenna no. j")