?? check_active_images.m
字號:
if ~exist('active_images'),
active_images = ones(1,n_ima);
end;
n_act = length(active_images);
if n_act < n_ima,
active_images = [active_images ones(1,n_ima-n_act)];
else
if n_act > n_ima,
active_images = active_images(1:n_ima);
end;
end;
ind_active = find(active_images);
if prod(active_images == 0),
disp('Error: There is no active image. Run Add/Suppress images to add images');
break
end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -