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

1 次查看(过去 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 个评论
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 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by