美文网首页
MATLAB frequent Q & A

MATLAB frequent Q & A

作者: 1390000 | 来源:发表于2019-10-10 19:29 被阅读0次
    1. Matlab多个子图Subplot位置排布(推荐)
      https://blog.csdn.net/qq_41492768/article/details/90209781
      关键在于subplot('position',[left bottom width height])该函数的使用。

    figure(1);
    subplot(2,2,1); % 2行2列排布4个子图,第一个
    subplot('position', [0.11 0.63 0.35 0.3]); % [x0 y0 width height]
    xlabel('xlabel');
    ylabel('ylabel');
    % 221子图和它的具体位置两行代码不一样。221是自动确定,具体位置是在其位置上画子图。两者取一即可

    1. subplot画图后如何调整子图间距
      https://www.ilovematlab.cn/thread-559573-1-1.html

    2. Matlab条形图bar误差棒绘制errorbar
      https://blog.csdn.net/qq_41492768/article/details/86772225

    3. MATLAB 不显示图中的x,y轴(推荐)
      https://blog.csdn.net/hamigua_12/article/details/41824061

    set(gca,'xtick',[],'ytick',[],'xcolor','w','ycolor','w')可以关闭当前子图的横坐标或纵坐标轴,或者两者都关闭

    1. Matlab绘图-隐藏坐标轴
      https://blog.csdn.net/kevinxdg/article/details/81106750
      axes的用法

    2. matlab画图如何取消坐标轴 只显示需要点的坐标
      https://zhidao.baidu.com/question/1927830294782885787.html

    3. MATLAB如何去掉坐标轴上的数字或者去掉坐标轴但保留边框

    x=0:0.01:pi;
    y=sin(x);
    figure
    plot(x,y)
    set(gca,'xtick',[])
    set(gca,'yticklabel',[]) % 注意x轴是xtick设置为空,y轴是yticklabel设置为空。最终结果如下,可以看到x轴数字和刻度都被隐藏,y轴保留了刻度。

    untitled.jpg
    1. MATLAB 坐标标注##(最全面的MATLAB 坐标标注介绍文章)

    https://www.cnblogs.com/carle-09/p/9033621.html##

    1. matlab 坐标轴xlabel/ylabel 的高级用法

    plot((1:10).^2) % help xlabel
    xlabel('Population','FontSize',12,'FontWeight','bold','Color','r')
    % 可以对FontSize FontWeight Color 进行定制,运行上面两行,可见结果

    相关文章

      网友评论

          本文标题:MATLAB frequent Q & A

          本文链接:https://www.haomeiwen.com/subject/axjopctx.html