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

📄 plotg3.m

📁 模式识别工具箱,希望对大家有用!
💻 M
字号:
function h = plotg(grid,z,nrc)%PLOTG Plot the function values z on a 2D grid%%    h = plotg(grid,z)%% Plot the function values given in z on the 2D grid. The grid is a% 2xN dataset, where N is nxn. Vector z has therefore also length N.%%    h = plotg(grid,z,clrs)%% By setting clrs the number of colors can be changed (default% clrs=10).%% When you already have a PRTools mapping w, please use plotw(w).%% see also: makegriddat, gendatgrid, plotwif nargin<3  nrc = 10;end% I want to be able to handle datasetsif isa(grid,'dataset')  grid = +grid;endif isa(z,'dataset')  z = +z;end% first determine the sizes of the grid:lx = length(find(grid(:,2)==grid(1,2)));ly = size(grid,1)/lx;% and extract the exact x and y positions:x = grid(1:ly:end,1);y = grid(1:ly,2)';% see if z has the right sizeif (size(z,2)>1)  error('Data z does not have appropriate size');endhold on;%h = surface(x,y',reshape(+z,ly,lx));h = mesh(x,y',reshape(+z,ly,lx));%h = surf(x,y,reshape(+z,ly,lx),nrc);view(3);if nargout==0  clear h;endreturn

⌨️ 快捷键说明

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