liti10.m

来自「数学建模与数学实验(第3版)课件+matlab」· M 代码 · 共 8 行

M
8
字号
x=-3:0.1:3;   y=1:0.1:5;
     [X,Y]=meshgrid(x,y);
     Z=(X+Y).^2;
     subplot(2,2,1); mesh(X,Y,Z)
     subplot(2,2,2);mesh(X,Y,Z);view(50,-34)
     subplot(2,2,3);mesh(X,Y,Z);view(-60,70) 
     subplot(2,2,4);mesh(X,Y,Z);view(0,1,1)
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?