yyaxis right : no scientific notation

6 visualizaciones (últimos 30 días)
vijay rs
vijay rs el 6 de Feb. de 2021
Comentada: Star Strider el 6 de Feb. de 2021
Hi,
I am new to matlab. Trying to plot grap with 2 yaxis. I am trying to remove the scientific notation from yyaxis right using gca command but unable to do it. As shown in attached figure I need simple number format in yyaxis right. Can advice how to remove the scientific notation from yyaxis right.
My code is below
------
gdp = readtable(Zgdp);
gdpx = gdp.DateTime;
gdpy = gdp.Value;
pop = readtable(ZPop);
popy = pop.Value;
popx = pop.DateTime;
ax = gca;
ax.FontSize = 15;
yyaxis left
ar = area(gdpx, popy);
set(gca,'YLim', [0 2200])
yyaxis right
p2 = plot(gdpx,gdpy,'k');
set(gca,'YLim',[0 22000])

Respuesta aceptada

Star Strider
Star Strider el 6 de Feb. de 2021
See the Numeric Ruler Properties Exponent documentation section to set the exponent.
  4 comentarios
vijay rs
vijay rs el 6 de Feb. de 2021
Thanks. Intially I used Yaxis(2) that why it didnt worked. Now I tried YAxis(2) and it is working. So the command are case sensitive..
Thanks for your help.
Star Strider
Star Strider el 6 de Feb. de 2021
As always, my pleasure!
In most instances, MATLAB is case-sensitive. There are a few exceptions with respect to the get and set function arguments (there may be a few others), however those are very rare exceptions.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by