Is it possible to connect 2 data sets while using the plot command?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Brad
el 7 de En. de 2015
Comentada: Brad
el 7 de En. de 2015
I am using the following code to generate a 2-D line plots.
figure('Name','Event Altitude','numbertitle','off');
axes('Position', [0.04 0.07 1.16 0.884]);
h = plot(Pre_Time1, Pre_Density1, '-o', Post_Time1, Post_Density1, '-o', 'MarkerSize', 15);
set(h(1), 'Color', 'r', 'MarkerFaceColor', 'r');
set(h(2), 'Color', 'g', 'MarkerFaceColor', 'g');
title(Event_Title, 'Fontsize', 20, 'fontweight', 'b');
legend(Source1, 'Location', 'NortheastOutside');
set(legend, 'FontSize', 20);
set(gca, 'Fontsize', 16);
grid on;
box on;
Within these plots are 2 distinct sets of data – Pre_Density1 (Red) and Post_Density1 (Green).
In the plot below, each data set is plot separately with no lines between the 2 sets. Is there a way to connect the 2 data sets?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146722/image.png)
Thank you.
0 comentarios
Respuesta aceptada
Image Analyst
el 7 de En. de 2015
What color line do you want between them? Let's say it's blue. Just make a new line segment where you stitch the endpoints of the other two lines together.
x = [Pre_Time1(end), Post_Time1(1)];
y = [Pre_Density1(end), Post_Density(1)]
plot(x, y, 'b-', 'LineWidth, 3);
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!