?? scaleimage.asv
字號:
%This code arranges the size of mean face and eigenfaces
%Author:Alex Chirokov
%Available at
% http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=6995&objectType=file
function out=ScaleImage(in)
in_min=min(min(in));
in_max=max(max(in));
out = (in-in_min)/ (in_max-in_min);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -