contents.m

来自「人工神经网络:MATLAB源程序用于训练测试」· M 代码 · 共 39 行

M
39
字号
%
% Content of \COLLECT\CALIB\NNET
%
% Drawnn    - Draws the topology of a neural network. (Called in nnmodel.m)
%
% Invrange  - Returns a range-scaled data set to its original scale
%
% Kolmog    - Kolmogorov-Smirnov test to check if a set of observations
%             are normally distributed
%
% Kolnorm   - Performs a Kolmogorov-Smirnov test for normality on replicate
%		        objects at different levels, and returns the percentage of 	
%		        objects not normally distributed at each level
%
% Levmarq   - Levenberg-Marquardt algorithm for training feed-forward 
%             backpropagation neural networks . Also pruned (ie. not 
%             fully connected) networks can be trained
%
% Linfit    - Construct a linear regression model to fit a calibration 
%             line and estimate lack-of-fit
%
% Lmeval    - Computes the output of a backpropagation neural network
%
% Nnmodel   - Backpropagation neural network with one hidden layer for 
%             multivariate calibration. (Designed to model only one 
%             response y at a time)
%
% Nnpred    - Prediction of responses of new samples with a neural network model
%
% Pmntanh   - Fast hyperbolic tangent function to be used in	neural networks 
%             instead of the tanh provided by MATLAB
%
% Range     - Each element in the data set is scaled to a range determined
%		      by the user
%
% Rangenew  - Each element in the new data set is scaled to a range determined
%             by the user on a reference set
%

⌨️ 快捷键说明

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