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

📄 neurc.m

📁 模式识别工具箱,本人毕业论文时用到的,希望对大家有用!
💻 M
字号:
%NEURC Automatic Neural Network Classifier% % 	W = neurc(A,n)% % Automatic neural network classifier based on a feedforward network % with n hidden units (default n = 5) and a Levenberg-Marquardt % optimization. Training is stopped when the performance on an % artificially generated tuning set of 1000 samples per class based % on k-nearest neighbour interpolation does not improve anymore. The % default value of n is 5. In future version this might be replaced % by an automaticly optimised value.% % See also datasets, mappings, lmnc, gendatk% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Physics, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlandsfunction w = neurc(a,n);if nargin == 1, n = 5; endt = gendatt(a,1000,'knn',2,1);w = lmnc(a,n,[],[],t);return

⌨️ 快捷键说明

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