semilog plot with a self defined x-axis range
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a time series data and I would like to plot them in the semilogx ranging from [10^(-4) to 10^2] as the attached figure. May I know how to do that?
0 comentarios
Respuestas (1)
Walter Roberson
el 5 de Dic. de 2023
Movida: Walter Roberson
el 5 de Dic. de 2023
T = readtable('data.xlsx', 'VariableNamingRule', 'preserve');
whos T
T.Properties.VariableNames
plot(T, "return period (year)", "surge");
set(gca, 'XScale', 'log')
xlim([10^-4, 10^2])
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!