How can I use horizantal lines instead of vertical lines to connect certain points?

조회 수: 3 (최근 30일)
ses=structWheeze(2,1).SoundData;
flow=structWheeze(2,1).Flow;
WSFS=structWheeze(2,1).Properties.WS_SF;
WEFS=structWheeze(2,1).Properties.WE_SF;
WS_new_array=structWheeze(2,1).Properties.WS_new; %enables to define wheeze starting indices
WE_new_array=structWheeze(2,1).Properties.WE_new; %enables to define wheeze ending indices
x = linspace(0, 144000 , 144000);
figure
plot(x,ses) %enables to plot the sound
hold on, plot(flow,'c')
% legend('ses','flow')
hold on
plot(x(WS_new_array*[1 1]).',(ones(size(WS_new_array,1),2).*ylim).', 'g', 'LineWidth',2); %green markers
plot(x(WE_new_array*[1 1]).', (ones(size(WE_new_array,1),2).*ylim).', 'r', 'LineWidth',2); %red markers
plot(x(WSFS*[1 1]).',(ones(size(WSFS,1),2).*ylim).', 'y', 'LineWidth',2); %green markers
plot(x(WEFS*[1 1]).',(ones(size(WEFS,1),2).*ylim).', 'k', 'LineWidth',2); %green markers
hold off
grid

답변 (1개)

dpb
dpb 2021년 5월 28일
"replace the red and green lines with a horiz[o]ntal bar"
xb=[x(WS_new_array) flip(x(WE_new_array))];
yb=ylim*ones(size(xb));
hP=patch(xb,yb,[0.5 0 0],'FaceAlpha',0.1);
salt to suit...
Same idea for other direction, of course.
  댓글 수: 5
Walter Roberson
Walter Roberson 2021년 5월 29일
I do not see where you have defined the coordinates you want the horizontal lines to be drawn at.
Serhat Sayim
Serhat Sayim 2021년 5월 30일
I attached the starting coordinates and ending coordinates. green lines' coordinates are startingindexes.m, red lines' coordinates are endingindexes.m

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

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by