matlab 可视化

  • grid on:加网格
  • xlim([-3, 3]) vs ylim([0, 5])

plot

  • (1)属性

    • ’linewidth’
    • ‘color’
    • ‘marker’
    • ‘linestyle’
  • (2)设置坐标轴刻度

    set(gca, 'xtick', 0:5:365)

释例

  • softplus 函数

    f(x)=ln(1+ex)

    x = -5:.01:5;
    y = log(1+exp(x));
    plot(x, y, 'linewidth', 3, 'color', 'k');
    ylim([0, 5]);
    grid on

设置 figure 的属性

  • (1)position

    set(gcf, 'position', [100, 100, 400, 300])
                        % 100, 100:表示以屏幕左下角为原点的偏移量
                        % 400:宽,300:高

你可能感兴趣的:(matlab 可视化)