Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
raspberry-pi
sense-hat
Commits
231742d5
Commit
231742d5
authored
Jan 04, 2019
by
Rousseau Vincent
Browse files
Add filter in read csv
parent
cd85989d
Changes
1
Hide whitespace changes
Inline
Side-by-side
read_csv.py
View file @
231742d5
...
...
@@ -16,7 +16,10 @@ print(temp)
temp_decimate
=
signal
.
decimate
(
temp
,
10
,
3
,
zero_phase
=
True
)
print
(
temp_decimate
)
temp_filtered
=
signal
.
savgol_filter
(
temp
,
53
,
3
)
plt
.
plot
(
time
,
temp
)
plt
.
plot
(
time
,
temp_filtered
)
plt
.
show
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment