Setting y-axis in figure
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
FAWAZ FAREAD AL BAKRI
el 15 de Jul. de 2022
Comentada: Voss
el 16 de Jul. de 2022
Hello all...
I would like to set the y-axis as shown in thisFigure.

0 comentarios
Respuesta aceptada
Voss
el 15 de Jul. de 2022
ax = gca();
set(ax, ...
'YLim',[1 1e10], ...
'YScale','log', ...
'Box','on', ...
'XGrid','on', ...
'YGrid','on', ...
'YMinorGrid','off', ...
'YMinorTick','off', ...
'TickLength',[0.02 0.02], ...
'GridLineStyle',':', ...
'GridColor',[0 0 0], ...
'GridAlpha',1, ...
'FontSize',12)
ylabel('Infected cell y')
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Polar 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!
