matlab - 如何在 Matlab 中将原点设置为轴的中心

标签 matlab plot matlab-figure

当我在 Matlab 中绘制函数 f(x) 时,例如,正弦函数,我得到的图形是这样的:

enter image description here

我想用一种完全不同的方式绘制它,比如用 Mathematica 生成的:

enter image description here

注意轴位置(连同刻度),以及 x 和 y 标签位置。

如有任何帮助,我们将不胜感激。

最佳答案

因为并非所有读者都拥有最新版本的 MATLAB,所以我决定让这个答案更笼统一些,所以现在它是一个函数,它获取要操作的图形句柄作为输入,并将其原点设置在中心:

function AxesOrigin(figureh)
% set the origin of a 2-D plot to the center of the axes

figureh.Color = [1 1 1];
% get the original properties:
del_props =  {'Clipping','AlignVertexCenters','UIContextMenu','BusyAction',...
    'BeingDeleted','Interruptible','CreateFcn','DeleteFcn','ButtonDownFcn',...
    'Type','Tag','Selected','SelectionHighlight','HitTest','PickableParts',...
    'Annotation','Children','Parent','Visible','HandleVisibility','XDataMode',...
    'XDataSource','YDataSource','ZData','ZDataSource'};
lineprop = figureh.CurrentAxes.Children.get;
lineprop = rmfield(lineprop,del_props);

x = lineprop.XData;
y = lineprop.YData;
old_XTick = figureh.CurrentAxes.XTick;
old_YTick = figureh.CurrentAxes.YTick;
old_Xlim = figureh.CurrentAxes.XLim;
old_Ylim = figureh.CurrentAxes.YLim;

% check that the origin in within the data points
assert(min(x)<0 && max(x)>0 && min(y)<0 && max(y)>0,'The data do not cross the origin')

figureh.CurrentAxes.Children.delete
axis off

% Create Q1 axes
axes('Parent',figureh,...
    'Position',[0.5 0.5 0.4 0.4],...
    'XTick',old_XTick(old_XTick>0),...
    'YTick',old_YTick(old_YTick>0));
xlim([0 max(old_XTick)]);
ylim([0 max(old_YTick)]);

% Create Q3 axes
axes1 = axes('Parent',figureh,...
    'YAxisLocation','right',...
    'XAxisLocation','top',...
    'Position',[0.1 0.1 0.4 0.4],...
    'XTick',old_XTick(old_XTick<0),...
    'YTick',old_YTick(old_YTick<0));
xlim(axes1,[min(old_XTick) 0]);
ylim(axes1,[min(old_YTick) 0]);

% Create real axes
axes2 = axes('Parent',figureh,...
    'Position',[0.1 0.1 0.8 0.8]);
hold(axes2,'on');
axis off

plot(x,y,'Parent',axes2)
set(axes2.Children,lineprop)
xlim(axes2,old_Xlim);
ylim(axes2,old_Ylim);
end

它删除了原始轴并放置了另外两个以创建“类似原点”的 View 。它并不完美,更像是解决方法的基本想法,应该针对特定目的进行调整,但如果您运行 2015a 或更早版本,它可能是一个很好的起点。

演示:

x=-2*pi:0.1:2*pi;
h = figure();
plot(x,sin(x),':or');

此代码创建此输出: sin function before

使用上面的函数后:

AxesOrigin(h)

我们得到结果: sin function after

关于matlab - 如何在 Matlab 中将原点设置为轴的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38186859/

相关文章:

java - 我可以裁剪 .dcm 图像,然后将它们以 .bmp 格式用于我的研究工作吗?

r - ggplot2中的条形图,宽度为变量,条形之间的间距均匀

python - 如何在 Matplotlib 中制作四向对数图?

r - 创建十六进制图

matlab - 如何在matlab中打印反转的颜色条?

matlab - 忽略 NaN 的相关矩阵

matlab - 检查矩阵中的所有特定值是否按特定顺序存在

image - 十字绣到 Matlab

MYSQL - 如何根据范围对数据进行分组并对其进行计数

点云的Matlab Delaunay三角剖分-颜色矩阵