Mathematica中文论坛-非官方

标题: 豆粑粑 Matlab 设置坐标轴的颜色 [打印本页]

作者: meatball1982    时间: 2022-4-1 10:06
标题: 豆粑粑 Matlab 设置坐标轴的颜色


引别人的帖子。设置matlab 图中坐标轴的颜色。就是一个记录。
https://www.mathworks.com/matlab ... -axis-colour-matlab

  1. X = 1 : 20;
  2. Y = rand(1, 20);
  3. subplot(2, 2, [1 3]);
  4. hold on
  5. plot(X, Y, 'gs-');
  6. grid on;
  7. xlabel('UTM Easting (m)');
  8. ylabel('UTM Northing (m)');
  9. % Get handle to current axes.
  10. ax = gca
  11. % This sets background color to black
  12. ax.Color = 'k'
  13. ax.YColor = 'r';
  14. darkGreen = [0, 0.6, 0];
  15. ax.XColor = darkGreen;
  16. ax.GridColor = 'y';
  17. ax.GridAlpha = 0.9;
  18. ax.FontSize = 15;
  19. ax.FontWeight = 'bold';
  20. hold off
复制代码







欢迎光临 Mathematica中文论坛-非官方 (http://ilovemathematica.com/) Powered by Discuz! X3.2