Mean Frequency ,Median Frequency ,Peak Frequency and Mean Power of an EMG signals
조회 수: 3 (최근 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!