Why do I receive an error when using the TREETEST function within the Statistics Toolbox?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
When I run the following code:
XX = rand(1e3,5);
YY = ( (XX(:,2) > 0.5) & (XX(:,4) < 0.5) );
TT = treefit(XX,YY,'method','classification','splitmin',50);
[COST,SECOST,NTNODES,BESTLEVEL] = TREETEST(TT,'cross',XX,YY);
I receive the following error message:
??? cellfun works only on cells.
Risposta accettata
MathWorks Support Team
il 27 Giu 2009
This enhancement has been incorporated in MATLAB 7.6 (R2008a). For previous product releases, read below for any possible workarounds:
This error occurs when the fourth input argument to TREETEST is logical rather than double. Any logical value or matrix of values can be converted to double using DOUBLE. This issue can be remedied by using:
YY = double(YY);
[COST,SECOST,NTNODES,BESTLEVEL] = TREETEST(TT,'cross',XX,YY);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!