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

📄 plotmat.m

📁 matlab算法集 matlab算法集
💻 M
字号:
function graphmat (Z,caption,xaxis,yaxis,zaxis)
%----------------------------------------------------------------
% Usage:       plotmat (Z,caption,xaxis,yaxis,zaxis)
%
% Description: Plot a matrix as a surface
%
% Inputs:      Z       = m by n matrix containing dependent 
%                        variables
%              caption = string containing graph title
%              xaxis   = string containing x-axis label
%              yaxis   = string containing y-axis label
%              zaxis   = string containing z-axis label
%----------------------------------------------------------------
   figure
   box off
   mesh (real(Z'))
   title (caption)
   xlabel (xaxis)
   ylabel (yaxis)
   zlabel (zaxis)
   wait
%----------------------------------------------------------------

⌨️ 快捷键说明

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