필터 지우기
필터 지우기

How to generate an EMG signal

조회 수: 26 (최근 30일)
John Smith
John Smith 2015년 10월 16일
댓글: Susan 2023년 7월 25일
How can I generate a raw EMG on MATLAB so I can perform amplification, filtering, FFT etc. on it? I did find libraries, but they open on a separate window. I cannot find a way that I can test my code on the generated EMG signal.
Any help would be highly appreciated.

채택된 답변

Star Strider
Star Strider 2015년 10월 16일
The Physionet EMG signals can be downloaded as .mat, .txt, or other format files that you can read into your workspace. You just have to search Physionet for the appropriate file options.
I just downloaded the attached file. To load and plot it, save it to a directory on your MATLAB path, then run this:
emg = load('emg_healthy.txt');
figure(1)
plot(emg(:,1), emg(:,2))
grid
  댓글 수: 3
karla velez
karla velez 2020년 10월 25일
Son los nombres de los ejes
Susan
Susan 2023년 7월 25일
The first column refers to time in seconds and the second is microvolts.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Julio Restrepo Zapata
Julio Restrepo Zapata 2019년 10월 3일
Esto no responde tu pregunta, pero puede serte util:

카테고리

Help CenterFile Exchange에서 Biomedical Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by