📄 display.m
字号:
function display(f)%LDA/DISPLAY Display an LDA object.% Copyright (c) 1999 Michael Kiefte.% $Log$fprintf('\n%s =\n\n', inputname(1));fprintf('\tLinear discriminant analysis\n');switch f.est case 0 fprintf('\tMaximum likelihood estimator\n'); case 1 fprintf('\tBias corrected estimator\n'); otherwise fprintf('\tStudent-t parameter estimator on %d degrees of freedom\n', f.nu);endfprintf('\t%d variates; %d classes\n\n', size(f.means'))disp(f)fprintf('\n');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -