1 hour of ECG signal to be splitted into 10 sec in mat format
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Star Strider
le 19 Avr 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 commentaires
Voir également
Catégories
En savoir plus sur ECG / EKG dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!