viewfix #17
|
|
@ -246,7 +246,7 @@ def view_simple_sig(
|
||||||
ax2.set_xlabel("Time (s)")
|
ax2.set_xlabel("Time (s)")
|
||||||
|
|
||||||
ax1.set_ylabel("Amplitude")
|
ax1.set_ylabel("Amplitude")
|
||||||
ax1.set_title(f"Time Series - {sdr} SDR", pad=10)
|
ax1.set_title(f"Time Series - {sdr} SDR", loc='left', pad=10)
|
||||||
ax1.legend(loc="upper right")
|
ax1.legend(loc="upper right")
|
||||||
|
|
||||||
ax2.set_ylabel("Frequency (Hz)")
|
ax2.set_ylabel("Frequency (Hz)")
|
||||||
|
|
@ -254,10 +254,10 @@ def view_simple_sig(
|
||||||
yticks = ax2.get_yticks()
|
yticks = ax2.get_yticks()
|
||||||
ax2.set_yticklabels([f"{y / 1e6:.1f}" for y in yticks])
|
ax2.set_yticklabels([f"{y / 1e6:.1f}" for y in yticks])
|
||||||
elif not compact_mode:
|
elif not compact_mode:
|
||||||
ax1.set_title("Time Series", pad=10)
|
ax1.set_title("Time Series", loc='left', pad=10)
|
||||||
ax1.legend(loc="upper right", fontsize=8)
|
ax1.legend(loc="upper right", fontsize=8)
|
||||||
|
|
||||||
ax2.set_title("Spectrogram", pad=10)
|
ax2.set_title("Spectrogram", loc='left', pad=10)
|
||||||
|
|
||||||
if ax_constellation is not None:
|
if ax_constellation is not None:
|
||||||
constellation_samples = _get_plot_samples(signal=signal, fast_mode=fast_mode, slow_max=50_000, fast_max=20_000)
|
constellation_samples = _get_plot_samples(signal=signal, fast_mode=fast_mode, slow_max=50_000, fast_max=20_000)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user