contents.m

来自「这是一个师兄编的程序」· M 代码 · 共 12 行

M
12
字号
% ihlf_sv_rfn toolkit
% version 1.0
%
% abaloneexample.m - demonstrate the recusive finite Newton algorithm on Abalone data set
% evalkernel.m - evaluate the kernel function
% ihlf_svr_rfntrain.m - interface of the following three types of algorithms
% ihlf_svr_rfntrain_fast.m - precompute the entire kernel matrix and space complexity is O(n*n)
% ihlf_svr_rfntrain_normal.m - precompute the n*nsv kernel matrix  and space complexity is O(n*nsv)
% ihlf_svr_rfntrain_save.m - do not precompute the kernel matrix and space complexity is O(nsv*nsv)
% ihlf_svr_rfntest.m - evaluate the estimated output of the input
% scaletrain.m - normalize data in the interval [-1 1]
% scaletest.m - normalize data in the interval [-1 1]

⌨️ 快捷键说明

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