Borrar filtros
Borrar filtros

problem with plotting two uneven data sets

2 visualizaciones (últimos 30 días)
Viswajit Talluru
Viswajit Talluru el 16 de En. de 2023
Comentada: dpb el 16 de En. de 2023
I have two difcferent data sets that need to be plotted together. I cant crop data from any data set. Couyld som,eone help me with that?

Respuestas (1)

Image Analyst
Image Analyst el 16 de En. de 2023
Try using hold on
x = linspace(1, 20, 30); % 30 elements.
y = 10 * sin(2 * pi * x / 5) + 5;
plot(x, y, 'b.-', 'MarkerSize', 14, 'LineWidth', 2);
hold on;
grid on;
x2 = linspace(5, 14, 10); % 10 elements
y2 = x2/2;
plot(x2, y2, 'r.-', 'MarkerSize', 14, 'LineWidth', 2);
legend('30 data points', '10 data points', 'Location', 'northwest');
  1 comentario
dpb
dpb el 16 de En. de 2023
@Viswajit Talluru-- Alternately to IA's solution, if it were convenient to have the two datasest in the same array, you can always augment the shorter to the length of the longer with NaN -- MATLAB graphics will silently ignore those values when plotting.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Objects en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by