spirals.m

来自「matlab的模式识别toolbox」· M 代码 · 共 20 行

M
20
字号
%SPIRALS 194 objects with 2 features in 2 classes%%	A = SPIRALS%	A = SPIRALS(M,N)%% Load the dataset in A, select the objects and features according to the% index vectors M and N. This is one of the Spiral dataset implementations.%% See also DATASETS, PRDATASETS% Copyright: R.P.W. Duin, r.p.w.duin@prtools.org% Faculty EWI, Delft University of Technology% P.O. Box 5031, 2600 GA Delft, The Netherlandsfunction a = spirals(M,N);if nargin < 2, N = []; endif nargin < 1, M = []; enda = prdataset('spirals',M,N);a = setname(a,'Spirals');

⌨️ 快捷键说明

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