How to separate a signal into 4 second segments?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Explorer
il 26 Gen 2016
Commentato: Explorer
il 27 Gen 2016
Lets say I have an ECG signal and I want to separate it 4 second segments. How to do it in MATLAB?
% MATLAB Code
load ('C:\Users\Explorer\Documents\MATLAB\PhysioNet_Database\Malignant_Ventricular_Ectopy_Database\418m.mat');
signal=val(1,:);
plot(signal)
xlabel('Time')
ylabel('Voltage')
0 Commenti
Risposta accettata
Walter Roberson
il 26 Gen 2016
If you have the signal processing toolbox, see buffer(), provided the signals are equally spaced in time.
3 Commenti
Star Strider
il 27 Gen 2016
The Physionet EKGs are all sampled at constant time intervals, but the intervals are different in different records. The sampling frequencies and other data for each record are all available in the database.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su ECG / EKG in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!