Is it possible to subplot confusion matrices using Plotconfusion funtion?

5 views (last 30 days)
I'm plotting several confusion matrices using plot_confusion() function (MATLAB) but it doesn’t working.Displays every confusion matrix sperately
figure
Subplot(2,1,1);
plotconfusion(targets,outputs,'train');
subplot(2,1,2);
plotconfusion(targets1,outputs1,'test')

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!