Mean Frequency ,Median Frequency ,Peak Frequency and Mean Power of an EMG signals
1 次查看(过去 30 天)
显示 更早的评论
I have three EMG signals, I found Time Doamin Features like RMS,Mean,STD etc..of that signal.Now I wolud like to find its Frequecy Doamin Fatures of those signal.How do we use MATLAB functions to find those signal Featutes.
clc
close all
clear all
warning('off','all');
%% Import Data and plot te signal %%
[tm,signal1,Fs,labels]=rdmat('emg_healthy');
[tm,signal2,Fs,labels]=rdmat('emg_myopathy');
[tm,signal3,Fs,labels]=rdmat('emg_neuropathy');
samples=length(signal1);
figure(),subplot(311),plot(signal1),xlabel('No.of samples'),ylabel('Amplitude in mVolts')
title('Helathy Raw EMG data')
subplot(312),plot(signal2),xlabel('No.of samples'),ylabel('Amplitude in mVolts')
title('Myopathy EMG data')
subplot(313),plot(signal3),xlabel('No.of samples'),ylabel('Amplitude in mVolts')
title('Neuropathy EMG data')
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Measurements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!