📄 example76_eigenvector.m
字号:
%%%example_figure
%%%%imread the image samples
figure('name','实验图像的特征提取','numbertitle','off');
%to look the primary components of the first sample
%and to see the target curve
y=W*b0;
i=1:5;
y1=y(:,i);
j=6:7;
y2=y(:,j);
i=9:10;
y3=y(:,i);
x=1:cpts;
% plot(x,y1,'r-',x,y2,'g-.',x,y(:,8),'b--',x,y3,'k:',title('Pri Compts'););
plot(x,y,'r.',x,y(x,1),'b-',x,y(x,2),'b-',x,y(x,3),'b-',x,y(x,4),'b-',x,y(x,5),'b-',...
x,y(x,6),'b-.',x,y(x,7),'b-.',x,y(x,8),'b--',x,y(x,9),'b:',x,y(x,10),'b:'),title('Pri Compts');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -