필터 지우기
필터 지우기

How to plot the difference between two graphs..

조회 수: 26 (최근 30일)
rounak
rounak 2013년 2월 15일
hi everyone.. i am doing my project on comparing two ECG signals and narrowing down the abnormalities in the another. I am having many difficulties in proceeding with this project. I am generating a normal and abnormal ecgs using ecg .txt files. I ahve done many projects in image processing and i am have even done many projects in converting an image into binaries and subtracting them.But in these case i am unable to proceed any further . And i need all the help in the wotld since i have no team in these project.Thank you in advance
  댓글 수: 1
Shashank Prasanna
Shashank Prasanna 2013년 2월 15일
what have you tried so far? any sample code you have written you can share? My understanding is that you want to plot the difference of two ECG signals, is that right? Can you clarify what you are trying to do?

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

답변 (1개)

Rick Rosson
Rick Rosson 2013년 2월 17일
편집: Rick Rosson 2013년 2월 17일
figure;
subplot(3,1,1);
plot(t,x);
subplot(3,1,2);
plot(t,y);
subplot(3,1,3);
plot(t,x-y);

카테고리

Help CenterFile Exchange에서 Denoising and Compression에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by