Undefined function 'plotconfusion' for input arguments of type 'categorical'. ? WHHAATT ????
2 次查看(过去 30 天)
显示 更早的评论
Dear all,
I have no idea why the function plotconfusion does not work when the function confusionmat works perfectly well. Of couse with both the exact same inputs.
confusion = confusionmat(prediction(1:end-machine.fr-ceil(machine.ra_c/2)+2,1), machine.table.grade(machine.start+machine.fr+ceil(machine.ra_c/2)-2:end,1));
f=figure
plotconfusion(prediction(1:end-machine.fr-ceil(machine.ra_c/2)+2,1), machine.table.grade(machine.start+machine.fr+ceil(machine.ra_c/2)-2:end,1));
Thank you very much for you help.
Pierre
2 个评论
Geoff Hayes
2018-5-2
Pierre - if you look at the documentation for plotconfusion, what does it tell you about the inputs? So in the command line do,
doc plotconfusion
Can all inputs be of type categorical? I know that the online documentation from plotfconfusion indicates that this is the case, but the online docs correspond to the latest version of MATLAB...which may not be the version that you have.
回答(1 个)
Steven Lord
2018-5-3
The online documentation is for the most recent release, which currently is release R2018a.
The ability to plot confusion labels for categorical labels using the plotconfusion function was introduced in release R2018a, according to the Release Notes.
I don't know exactly when the confusionmat function started supporting categorical arrays as inputs, but from reading the documentation it seems like that support started well before release R2017b.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Trigonometry 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!