⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 polarmesh.m

📁 hi i have a huge collection are you interested
💻 M
字号:
function h = polarmesh(r,theta,z,c)%MESH   3-D polar mesh surface.%       POLARMESH(R,THETA,Z) Produces a mesh plot of Z as a function of R and%       THETA.%%       Example:%       %       [r,theta] = meshgrid(0.5:.5:10,0:pi/20:2*pi);%       z = sin(r)./r;%       polarmesh(r,theta,z)%%       See MESH for usage.%       Andrew Knight, 1993x = r.*cos(theta);y = r.*sin(theta);hh = mesh(x,y,z);if nargout==1  h = hh;end

⌨️ 快捷键说明

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