How to generate an EMG signal
    18 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    John Smith
 am 16 Okt. 2015
  
    
    
    
    
    Kommentiert: Susan
 am 25 Jul. 2023
            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.
0 Kommentare
Akzeptierte Antwort
  Star Strider
      
      
 am 16 Okt. 2015
        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 Kommentare
Weitere Antworten (1)
  Julio Restrepo Zapata
 am 3 Okt. 2019
        Esto no responde tu pregunta, pero puede serte util:
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Biomedical Signal Processing finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





