analysebdk.m
来自「有监督自组织映射-偏最小二乘算法(A supervised self-organ」· M 代码 · 共 24 行
M
24 行
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 + =
减小字号Ctrl + -
显示快捷键?