plotting a CDF with 2 logs axis

10 visualizaciones (últimos 30 días)
C.G.
C.G. el 10 de Mzo. de 2022
Respondida: Voss el 11 de Mzo. de 2022
I have a time series of data, and I want to plot a CDF for this.
I have plotted the cdf for this, but it is on normal axis. Is it possible to plot these were both the X and Y axis are log?
idx = Q>0.5
cdfplot(Q(idx))

Respuestas (1)

Voss
Voss el 11 de Mzo. de 2022
load('Q.mat')
idx = Q>0.5;
cdfplot(Q(idx));
set(gca(),'XScale','log','YScale','log');

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by