friedman.m
来自「RBF算法matlab工具箱,里面有详细的说明文档.」· M 代码 · 共 17 行
M
17 行
% The 4D example in the rbf_rt_1 manual page.clear% 4D data set.[X, y] = get_data('friedman');% Configure the method.conf.minmem = [3 4 5];conf.scales = [7 8 9];conf.timer = '4D';% Run the method.[C, R, w, info] = rbf_rt_1(X, y, conf);% Print out split statistics.disp(info.tree.split.number)disp(info.tree.split.order)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?