mirror of
https://github.com/OpenRTX/OpenRTX
synced 2026-08-08 12:29:06 -04:00
This change removes the old copyright header from project sources and replaces it with a new simplified SPDX-compliant header. Note that files that were missing the header but reasonably understood to be licensed according to the root license were not corrected. Signed-off-by: Ryan Turner <ryan@turnrye.com>
19 lines
512 B
Python
Executable file
19 lines
512 B
Python
Executable file
#! /usr/bin/env python3
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: Copyright 2020-2026 OpenRTX Contributors
|
|
|
|
import pandas as pd
|
|
from matplotlib import pyplot as plt
|
|
from sys import argv
|
|
|
|
plt.rcParams["figure.autolayout"] = True
|
|
df = pd.read_csv(argv[1])
|
|
#df = df.head(n=10000)
|
|
print("Contents in csv file:\n", df)
|
|
plt.plot(df.index, df.RRCSignal)
|
|
plt.plot(df.index, df.SyncDetect)
|
|
plt.plot(df.index, df.QntMax)
|
|
plt.plot(df.index, df.QntMin)
|
|
plt.plot(df.index, df.Symbol)
|
|
plt.show()
|