Filter löschen
Filter löschen

Whhy it shows 'Undefined function or variable 'confMat'; Please check me code. I cant plot the confusion matrix

2 Ansichten (letzte 30 Tage)
L = 3 ;
figure ('visible','on');
imagesc(confMat);colormap(flipud(gray)) ; caxis ([0,1])
textstr=num2str(confMat(:),'%0.2f');
textstr=strtrim(cellstr(textstr));
[x,y]=meshgrid(1:L);
hstrg=test(x(:),y(:) , textstr(:),
'HorizontalAlignment','center',
'FontSize',10,'FontName','Times New Roman');
midvalue=mean(get(gca,'Clim'));
textColors=repmat(confMat(:).midvalue,1,3);
set(gca,'XTick',1:L,
'XTickLabel',
{'Unripe','Ripe','Fruit'};

Antworten (1)

Walter Roberson
Walter Roberson am 4 Jun. 2018
... because you have not created any confMat ?

Community Treasure Hunt

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

Start Hunting!

Translated by