how can I show my Xaxis format like 10^..?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Samaneh Arzpeima
el 5 de Abr. de 2020
Comentada: Ameer Hamza
el 5 de Abr. de 2020
Hi everyone
I am facing a deadline and stuck in my x-axis format
I would appriciate if you give me some prompt advice
I read a part of excel, made a subset ,the column that I want to place on my x-axis is like 2.4e+04
but when I plot the data, the xaxis change to 2.4
what should I do?
this is the code
figure(3)
plot(subsetA(1:7,30),subsetA(1:7,4),'-o','LineWidth',2)
hold on
plot(subsetA(8:14,30),subsetA(8:14,4),'-o','LineWidth',2)
plot(subsetA(15:end,30),subsetA(15:end,4),'-o','LineWidth',2)
legend('S<1','S=1','S>1','FontSize',14,...
'Location','best')
ylim([80 200])
xlim([1.5e+04 4e+04])
a = get(gca,'XTickLabel');
set(gca,'XTickLabel',a,'FontName','Times','fontsize',14)
b = get(gca,'YTickLabel');
set(gca,'YTickLabel',b,'FontName','Times','fontsize',14)
xlabel('$\frac{\Delta\sigma\times asp_{radius}}{background \_G_{c}}$','Interpreter','latex','FontSize',14,'FontWeight','bold');
ylabel('Rupture Area [km^2]','FontSize',14,'FontWeight','bold');
0 comentarios
Respuesta aceptada
Ameer Hamza
el 5 de Abr. de 2020
Editada: Ameer Hamza
el 5 de Abr. de 2020
There are several redundant steps in your code. Try this
figure(3)
plot(subsetA(1:7,30),subsetA(1:7,4),'-o','LineWidth',2)
hold on
plot(subsetA(8:14,30),subsetA(8:14,4),'-o','LineWidth',2)
plot(subsetA(15:end,30),subsetA(15:end,4),'-o','LineWidth',2)
legend('S<1','S=1','S>1','FontSize',14,...
'Location','best')
ylim([80 200])
xlim([1.5e+04 4e+04])
set(gca,'FontName','Times','fontsize',14)
xlabel('$\frac{\Delta\sigma\times asp_{radius}}{background \_G_{c}}$','Interpreter','latex','FontSize',14,'FontWeight','bold');
ylabel('Rupture Area [km^2]','FontSize',14,'FontWeight','bold');
4 comentarios
Ameer Hamza
el 5 de Abr. de 2020
Sorry, there was a mistake in my code. I have corrected it. I have changed the following line
set(gca,'FontName','Times','fontsize',14)
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown 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!