How to change exponent position in an axis of a surface plot

29 visualizaciones (últimos 30 días)
How do I change the position of the 10^(-3) in one of the grounded axes shown in this plot above!!

Respuesta aceptada

dpb
dpb el 5 de Mayo de 2022
Editada: dpb el 7 de Mayo de 2022
It's an undocumented property --
hAx=gca; % get axes handle
hY=hAx.YRuler; % and the subject axis ruler handle of interest
>> hY.SecondaryLabel
ans =
Text (\times10^{5}) with properties:
String: '\times10^{5}'
FontSize: 10
FontWeight: 'normal'
FontName: 'Helvetica'
Color: [0.15 0.15 0.15]
HorizontalAlignment: 'right'
Position: [-2.2905 1.342e+05 -2.0262]
Units: 'data'
Show all properties
>>
is the text() object handle -- you can set the 'Position' as desired

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

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by