How to format notation to use "... x 10^-5..." instead of "...e..." in this figure
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
T K
el 11 de Mayo de 2023
Respondida: Dyuman Joshi
el 11 de Mayo de 2023
attached figure
0 comentarios
Respuesta aceptada
Más respuestas (1)
Dyuman Joshi
el 11 de Mayo de 2023
%Random graph
syms x
fplot(jacobiP(1:4,4,4,x))
axis([-1 2 -5 5])
grid on
%Values to be displayed as the legend
arr = rand(4,1)*1e-4
out=floor(log10(arr)); %take abs() of arr in case of negative values
str = compose('%f x 10^{%d}', arr./10.^out, out)
legend(str,'Location','best')
0 comentarios
Ver también
Categorías
Más información sobre Legend 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!