Y軸のラベルの指数表示を数値で表示するにはどうすればよいですか?
53 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 18 de Jun. de 2010
Editada: MathWorks Support Team
el 17 de Mayo de 2018
次のコマンドを実行すると、Y軸のラベルが1, 2, 3 e+4の形式で表示されますが、オリジナルデータ(10000, 20000, 30000)の形式で表示する方法を教えてください。
x = [1 2 3];
y = [10000 20000 30000];
plot(x,y)
Respuesta aceptada
MathWorks Support Team
el 17 de Mayo de 2018
'YTickLabel'の再設定を行うことで、指数表示を実数表示へ変更できます。
x = [1 2 3];
y = [10000 20000 30000];
plot(x,y)
set(gca,'yticklabel',num2str(get(gca,'ytick')','%d'))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels 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!