Skip to content
Snippets Groups Projects
Commit 998fe038 authored by LexvanGastel's avatar LexvanGastel
Browse files

230403: 2: Data Retrieval: added code to retrieve EMG channel names

parent 0ab81e52
No related branches found
No related tags found
No related merge requests found
File added
......@@ -23,3 +23,9 @@ def load_emg_data(file_path):
file_path = "emg_data_walking.mat"
load_emg_data(file_path)
chosen_muscles = {
'rectus_fomoris': 0,
'tibialis_anterior': 7
}
print(f"Gekozen spieren: {chosen_muscles}")
\ No newline at end of file
t = "hoi"
print(t)
\ No newline at end of file
import numpy as np
import scipy.signal as signal
class Dataretrieval:
def __init__(self, filiepath: str):
self.filepath = filepath
self.data = None
self.sampling_rate
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment