Line incorrectly connects data points in a loglog plot

12 visualizaciones (últimos 30 días)
Sim
Sim el 16 de Ag. de 2022
Respondida: Sim el 16 de Ag. de 2022
Given the array "a.mat" here attached, if I plot it, i.e.
plot(a(:,1),a(:,2))
I get this picture
Instead, if I plot it in a log scale, i.e.
loglog(a(:,1),a(:,2))
I get this picture (it looks like the points are not sorted...)
How to have a smooth curve in the "loglog" plot, where the line connecting the data points does not "jump" back and forth ?

Respuesta aceptada

Sim
Sim el 16 de Ag. de 2022
a = sortrows(a,[1 2])
loglog(a(:,1),a(:,2))

Más respuestas (0)

Categorías

Más información sobre Log Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by