1 hour of ECG signal to be splitted into 10 sec in mat format
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I need to splitted my ECG to 10 second each Mat file rathar than having one hour in one mat file how can I do that?
0 Kommentare
Antworten (1)
Star Strider
am 19 Apr. 2022
seclen = 10; % Length = 10 Seconds
Fs = 256; % Sampling Frequency (Hz)
EKG = randn(1,3600*Fs); % EKG Record
EKG10 = buffer(EKG, Fs*seclen)
Check = size(EKG10,1)/Fs % Check That Each Column Is 10 Seconds In Length
.
0 Kommentare
Siehe auch
Kategorien
Mehr zu ECG / EKG finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!