15 lines
410 B
Python
Executable File
15 lines
410 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
import pandas as pd
|
|
from matplotlib import pyplot as plt
|
|
|
|
plt.rcParams["figure.autolayout"] = True
|
|
df = pd.read_csv("./build_linux/M17_clock_recovery_output_1.csv")
|
|
print("Contents in csv file:\n", df)
|
|
#plt.plot(df.index, df.Input)
|
|
#plt.plot(df.index, df.RRCSignal)
|
|
plt.plot(df.index, df.LSFConvolution)
|
|
plt.plot(df.index, df.FrameConvolution)
|
|
plt.plot(df.index, df.Stddev)
|
|
plt.show()
|