How to plot overlapping lines while esnuring both remain visible?

96 次查看(过去 30 天)
Hello All, I am having trouble plotting overlapping lines. Consider the code snippet below where I plot the pressure through 5 pipes over 5 time steps. The problem arises when I have two pipes with same pressure and the pressure lines overlap each other. Any help as to how can I best differntiate between them while also ensuring that they are both displayed?
% Code Snippet
t_vect= linspace(1,5,5) % time step vector
P_time = rand(5) %Random pressure values for 5 pipes
P_time(:,2:3) = 0.5; %Assigning same arbitrary values to two pipes (2 and 3)
plot(t_vect,P_time,'--o') % Plotting the pressure in 5 pipes against t_vect
And as you can see in the picture there is no way one can distinguish between pressures in pipes 2 and 3. But here comes my major concern, the number of pipes in my case are not constant and neither are the number of pipes with same pressure values (possibility of more than 2 lines overlapping), so is there a way this could be automated?
  2 个评论
Vivek Bhardwaj
Vivek Bhardwaj 2018-5-15
Hi, I have added a legend so that it becomes more apparent. The straight yellow line in the middle is the pressure reading for Pipe 3 which completely overlaps the pressure for pipe 2 (marked as red in legend), since they were assigned the same values (0.5). What I want is that the two lines should be distinguishable.

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2018-5-15
I would plot ‘pipe 3’ (or whatever one is plotted later) with a larger line width, or plot ‘pipe 2’ (if plotted first) as a solid line.
  4 个评论
Vivek Bhardwaj
Vivek Bhardwaj 2018-5-17
Thank you. The lines are distinguishable, I'll play around a bit and see what works best.

请先登录,再进行评论。

更多回答(1 个)

Jan
Jan 2018-5-15
% The actual data:
t = 0:5;
x1 = zeros(size(t));
x2 = zeros(size(t));
tt = linspace(0, 5, 20);
x1t = interp1(t, x1, tt);
x2t = interp1(t, x2, tt);
plot(tt, x1t, '--o', 'MarkerIndices', 1:5:length(tt));
plot(tt, x2t, '--o', 'MarkerIndices', 3:5:length(tt));
Well, I'm not convinced that this is nice. It is not trivial to do this automatically using an optimal distance between the markers of overlapping lines. But you have at least a method, to detect such identical curves.
  2 个评论
Vivek Bhardwaj
Vivek Bhardwaj 2018-5-17
Thank you for the reply. Managing where the markers are displayed does seem to be a feasible way but I think the property 'MarkerIndices' is only available for the new releases as I have R2016a and I get an error when I use the 'MarkerIndices' property.
Error: "Error using plot There is no MarkerIndices property on the Line class."

请先登录,再进行评论。

类别

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