Borrar filtros
Borrar filtros

Plotting Highly Close Data

1 visualización (últimos 30 días)
A M
A M el 19 de Ag. de 2017
Respondida: Image Analyst el 19 de Ag. de 2017
Hi, i have a set of data whose values are quite close to one another. If i plot them, they appear to be quite overlapped with one another. Are there any possible ways to go around it? I wanted them to appear in a way that effect can be observed.
I have tried to use Log scale and also tried to adjust the axis ... it don't work

Respuestas (1)

Image Analyst
Image Analyst el 19 de Ag. de 2017
If they're close, I don't know why they' be quite overlapped unless you used a marker and the marker was too big. Try a smaller marker:
plot(x, y, 'b.-', 'MarkerSize', 5);
or don't use a marker at all
plot(x, y, 'b-');

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by