フィルターのクリア

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 Center および File ExchangeBiomedical Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by