Commit 231742d5 authored by Rousseau Vincent's avatar Rousseau Vincent
Browse files

Add filter in read csv

parent cd85989d
No related merge requests found
Showing with 3 additions and 0 deletions
+3 -0
...@@ -16,7 +16,10 @@ print(temp) ...@@ -16,7 +16,10 @@ print(temp)
temp_decimate = signal.decimate(temp, 10, 3, zero_phase=True) temp_decimate = signal.decimate(temp, 10, 3, zero_phase=True)
print(temp_decimate) print(temp_decimate)
temp_filtered = signal.savgol_filter(temp, 53, 3)
plt.plot(time,temp) plt.plot(time,temp)
plt.plot(time,temp_filtered)
plt.show() plt.show()
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment