필터 지우기
필터 지우기

How can I plot multiple signals separately as like mentioned figure for avoiding this three signals overlapping?

조회 수: 8 (최근 30일)
Program code:
%plot all signals in a single plot.
figure;
subplot(211)
plot(d2,'k','LineWidth',.5); %Input Signal
title('Contaminated Signal 1');
hold on
plot(clean(1,:),'b','LineWidth',.5); %wICA cleanned EEG
title('Clean Signal 1');
hold on
arti1=d2-clean(1,:);
plot(arti1,'r','LineWidth',2);
ylim([-40, 40]);
title('Observation Figure By Proposed Method (Channel 01)');
legend('Input Signal', 'Clean Signal','Artifact');
My goal is to plot this following type : here signal gap between another signal is 35
My experimental output plot is:

채택된 답변

Mathieu NOE
Mathieu NOE 2023년 11월 27일
이동: Cris LaPierre 2023년 11월 27일

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Biomedical Signal Processing에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by