フィルターのクリア

How to separate two signal?

2 ビュー (過去 30 日間)
Explorer
Explorer 2016 年 1 月 6 日
コメント済み: Explorer 2016 年 1 月 6 日
Two signals are plotted on same figure as shown below. One signal is plotted in green color and the other one is in blue.
I need to plot them separately.
The code I used to plot above signal is:
plotATM('16786m')
Source files are available to download here
These signals are of ECG and taken from PhysioNet Database .

採用された回答

Stalin Samuel
Stalin Samuel 2016 年 1 月 6 日
figure()
plot(val(1,:))
figure()
plot(val(2,:))
  5 件のコメント
Stalin Samuel
Stalin Samuel 2016 年 1 月 6 日
load 16786m
figure()
plot(val(1,:))
figure()
plot(val(2,:))
Explorer
Explorer 2016 年 1 月 6 日
Thank you Stalin.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by