Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
merged.csv
*.csv
*.csv
all_data.dat
Binary file modified CSV_fall_data/.DS_Store
Binary file not shown.
Binary file modified __pycache__/merger.cpython-35.pyc
Binary file not shown.
Binary file modified __pycache__/merger.cpython-37.pyc
Binary file not shown.
Binary file modified a.h5
Binary file not shown.
Binary file removed abcdeg_l.h5
Binary file not shown.
2 changes: 1 addition & 1 deletion derivative_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def nth_derivative (N, order = 1):
def derivative(n):
if type(n) is not np.ndarray:
n = np.array(n)
return np.gradient(n)[1]
return np.gradient(n)[0]

def gradient(y, dx=1):
"""Returns second order accurate derivative of y using constant step size dx."""
Expand Down
Binary file modified fall_detection_1.h5
Binary file not shown.
206 changes: 0 additions & 206 deletions main.py

This file was deleted.

Loading