删除Matlab图的刻度标签中的科学记数法

时间:2012-05-04 18:15:29

标签: matlab plot label

我在Matlab中制作了一个情节,使用:

hold on
plot(t1,Dx1,'r')
xlabel('t (ps)')
ylabel('Deviation of coordinate from initial coordinate (Å)')
plot(t1,Dy1,'g')
plot(t1,Dz1,'b')
hold off

但是,y轴上的刻度标签是用科学记数法生成的:

Scientific Notation on y-axis

有什么办法可以删除科学记数法,只有y标签的范围是-0.0025到0.0005吗?谢谢!

6 个答案:

答案 0 :(得分:9)

您可以尝试使用sprintf手动设置刻度标签:

yt = get(gca,'YTick');
set(gca,'YTickLabel', sprintf('%.4f|',yt))

答案 1 :(得分:4)

我也努力让我的情节轴以固定的概念而不是科学的符号显示。对我来说最令人沮丧的部分是,即使我手动将刻度标签重新分配给固定符号,“x10 ^ 4”标签仍会保留在绘图框的边缘。最后,感谢上面的帖子,我在图形渲染器中追踪了问题。我正在使用'OpenGL'。当我改为'zbuffer'时,当我手动重置刻度标签时,“x10 ^ 4”标签会正确消失。 这是一个示例代码,它将格式'###,###。0'应用于y轴标签,甚至在缩放/平移等时动态更新y标签,这要归功于我在上面找到的两个有用的功能。 Matlab文件交换。找到其他两个函数的位置包含在示例函数下面的注释中。

function []=TickFixExample()

figure %this one works
myRenderer='zbuffer';
set(gcf,'Renderer', myRenderer); 
axesh = axes();
set(gca,'YLim',[20000 20100]);
title(myRenderer)
ticklabelformat(gca,'y','###,###.0');

figure %this one doesn’t work
myRenderer='OpenGL';
set(gcf,'Renderer', myRenderer); 
axesh = axes();
set(gca,'YLim',[20000 20100]);
title(myRenderer)
ticklabelformat(gca,'y','###,###.0');
Y.Otman的

函数ticklabelformat(hAxes,axName,format)可以在以下位置找到: http://www.mathworks.com/matlabcentral/fileexchange/36254-ticklabelformat-set-a-dynamic-format-of-axes-tick-labels 或通过谷歌搜索'ticklabelformat matlab' 我通过改变第105行来略微修改它:

 tickLabels = arrayfun(@(x)(FormatNumberScalarInputStrOutput`(x,format)),tickValues,'UniformOutput',false);`

代替奥特曼的版本:

tickLabels = arrayfun(@(x)(sprintf(format,x)),tickValues,'UniformOutput',false);

该更改提供了数千个逗号分隔符功能 函数y = S.Lienhard的NumberFormatter(Numbers,FormatPattern), 也在Matlab文件交换上。我修改过的Lienhard代码版本是 完全在下面给出:

function y = FormatNumberScalarInputStrOutput(Number ,FormatPattern)

 % adapted 12-2012 by D. Bourgoyne from NUMBERFORMATTER by S. Lienhard
% 
%   The pound sign (#) denotes a digit, the comma is a placeholder for the
%   grouping separator, and the period is a placeholder for the decimal
%   separator.
%   The pattern specifies leading and trailing zeros, because the 0
%   character is used instead of the pound sign (#).
% 
%   Examples:
%   NumberFormatter(rand(5),'0.000')
%   NumberFormatter(rand(5)*100,'###,###.000') 
import java.text.*
v = DecimalFormat(FormatPattern);
y = char(v.format(Number));

答案 2 :(得分:3)

尝试在创建轴后添加此项:

ax = gca;
ax.YAxis.Exponent = 0;

以下是一个例子:

x = 0:0.1:10;
y = 1000*x.^2;

%Plot with default notation:

subplot(1,2,1)
plot(x,y)


%Plot without exponent:

subplot(1,2,2)
plot(x,y)
ax = gca
ax.YAxis.Exponent = 0;

答案 3 :(得分:1)

您可以使用此代码控制y轴刻度标签的格式。此代码源自ticks_format.m。

%在此设置首选刻度格式。

y_formatstring = '%3.4f';

%这是代码。

ytick = get(gca, 'ytick');
for i = 1:length(ytick)
    yticklabel{i} = sprintf(y_formatstring, ytick(i));
end
set(gca, 'yticklabel', yticklabel)

答案 4 :(得分:1)

你必须写下以下内容:

set(gcf, 'renderer', 'zbuffer')

答案 5 :(得分:0)

在较新版本的matlab(2016b)中,您可以使用ytickformat和xtickformat函数轻松更改标签的格式。