フィルターのクリア

find slope sign change of emg signal

16 ビュー (過去 30 日間)
Ali Asghar
Ali Asghar 2019 年 8 月 16 日
回答済み: Star Strider 2019 年 8 月 18 日
dear
i want to find slope sign change of emg signal.
how i do this?
Thank you

回答 (2 件)

KSSV
KSSV 2019 年 8 月 16 日
If (t,x) is your time and signal.
dt = diff(t) ;
dx = diff(x) ;
slope = dx./dt ;
slope_sign = sign(slop) ;
  1 件のコメント
Ali Asghar
Ali Asghar 2019 年 8 月 18 日
dear
my data signal is 30000x4
time is 1x30000
its show error : Matrix dimensions must agree.

サインインしてコメントする。


Star Strider
Star Strider 2019 年 8 月 18 日
Use the gradient function to produce results that are the same sizes as your data, not diff.
If ‘EMG’ is your (30000x4) signal matrix, the derivative (‘dEMG’) is:
[~,dEMG] = gradient(EMG);
Note that taking the derivative of a a ‘real world’ signal will significantly amplify the noise. It would be best for you to use a lowpass filter on your EMG signal matrix first, to eliminate high-frequency noise. If you have R2018a or later, use the lowpass function (or bandpass if you also want to eliminate d-c offset and low-frequency baseline drift). Otherwise, efficient filters are not difficult to design and implement in MATLAB.

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by