我正在使用Matlab回归树工具箱,我想使用所描述的预测函数here
我构建了这样的树:
tree = fitrtree(data,labels,'CrossVal','on');
我可以看到树已经建成了。我甚至可以想象它。但是,当我尝试使用预测时,预测函数会出现此错误:
Error using predict (line 126)
No valid system or dataset was specified.
当我输入which predict
时,会出现/home/sami/Desktop/MATLAB/R2016b/toolbox/ident/ident/predict.m
如何使用回归树的预测函数?
此致