clusterplot.m
来自「基于Matlab的模拟退火算法工具箱」· M 代码 · 共 14 行
M
14 行
function h = clusterplot(W)
% h = clusterplot(W)
% Method for chemcluster example supplied with SA Tools.
% See http://www.frostconcepts.com/software for information on SA Tools.
%
% h = clusterplot(W) ;
%
% W = N 3D points.
% N = number of molecules
%
% Produces a scatter plot of a cluster state.
%
scatter3(W(:,1),W(:,2),W(:,3),'filled') ;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?