matlab plot坐标轴刻度怎么调整?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab plot坐标轴刻度怎么调整?相关的知识,希望对你有一定的参考价值。

如图,x轴单位长度太大了,请问该怎么调为1?

参考技术A set(gca,'xtick',-5:1:5) 参考技术B Form formPreview = new Form();
public Leaf(string name) : base(name)
public override void Add(Component c)

Console.WriteLine("Cannot add to a leaf");

public override void Remove(Component c)

Console.WriteLine("Cannot remove to a leaf");

public override void Display(int depth)

Console.WriteLine(new string('-',depth)+name);

matlab中怎么画出有刻度的空间直角坐标系

不要只给出相关函数,最好有源代码

举个例子

x=-5:10; y=-5:10;

plot(x,y); axis off; hold on;

plot([0 0],[min(y) max(y)],'k',[min(x) max(x)],[0 0],'k');

ax=[max(x),max(x)-0.3,max(x)-0.3;0,0.2,-0.2];

fill(ax(1,:),ax(2,:),'k');

ay=[0,0.15,-0.15;max(y),max(y)-0.4,max(y)-0.4];

fill(ay(1,:),ay(2,:),'k'); hold on

for i=1:length(x)-1

    if x(i)~=0

        plot([x(i),x(i)],[0,0.1],'k'); hold on

        a=text(x(i),-0.4,num2str(x(i)));

        set(a,'HorizontalAlignment','center')

    end

    if y(i)~=0

        plot([0,0.1],[y(i),y(i)],'k'); hold on

        b=text(-0.4,y(i),num2str(y(i)));

        set(b,'HorizontalAlignment','center')

    end

end

c=text(-0.4,-0.4,num2str(0));

set(c,'HorizontalAlignment','center')

参考技术A 你说的是三维坐标系吧
三维坐标系一般用surf和mersh,函数。具体应用可以查帮助。
set(gca,'Xlim',[a b]);%设定X轴的范围,Y,Z把Xlim替换一下就可以了
set(gca,'Xticklabel',linspace(a,b,c));%设定在a到b的范围内有c个刻度,具体情况,根据自己的需要而定。
参考技术B 这样有两种方法呢!
一种就是利用hold on
另一种就是plot(x1,y1,x2,y2,x3,y3……);
这两种都可以完成你说的那个问题,你可以试一下!
祝你成功!!

以上是关于matlab plot坐标轴刻度怎么调整?的主要内容,如果未能解决你的问题,请参考以下文章

matlab 如何更改figure坐标轴刻度为不等间距刻度

matlab中怎么画出有刻度的空间直角坐标系

用MATLAB的plot画图,但是坐标刻度太大,怎么调节刻度

Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围

用Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围

MATLAB中plot画图坐标轴限定问题?