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

📄 clustermap_d.m

📁 计量工具箱
💻 M
字号:
% PURPOSE: An example using scattermap
%          to examine a scattermap of 2 variables
%---------------------------------------------------
% USAGE: clustermap_d
%---------------------------------------------------

% PURPOSE: An example using clustermap
%          to examine a matrix of variables
%          by clusters over a map
%---------------------------------------------------
% USAGE: clustermap_d
%---------------------------------------------------

clear all;

load ecu.data;
load ecu_xy.data;

area = ecu_xy(:,1);
latt = ecu_xy(:,2);
long = ecu_xy(:,3);

ecu95 = ecu(:,17);
ecu80 = ecu(:,2);
grwthx = ecu(:,end);

clusters = 4;
method = 1;

clustermap(long,latt,[ecu80 ecu95 grwthx],clusters,method); % using points

% clustermap(long,latt,[ecu80 ecu95 grwthx],clusters,method,[],[],1); % using symbols

⌨️ 快捷键说明

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