📄 analysebdk.m
字号:
function AnalyseBDK(BestMLK,MLKP);
figure(1)
PlotMap(BestMLK.XMap,MLKP);
figure(2)
if (upper(MLKP.ProblemType) == 'REG')
ShowMap(BestMLK.YMap,MLKP);
else
ShowAllClasses(BestMLK.YMap,MLKP);
end
figure(3)
CT=CalcCorrTable(BestMLK.XMap,BestMLK.YMap);
subplot(3,1,1)
plot(BestMLK.Xtr')
title('CI (XMap,YMap)')
axis tight
subplot(3,1,2)
imagesc(CT')
subplot(3,1,3)
plot(CT)
axis tight
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -