?? plus.m
字號:
function M = plus(M,a)
% Add a constant to the map (i.e., translate its image).
% Copyright (c) 1998 by Toby Driscoll.
% $Id: plus.m 36 1998-06-29 23:14:51Z tad $
% May need to swap arguments
if isa(M,'double') & isa(a,'crdiskmap')
tmp = M;
M = a;
a = tmp;
end
if length(a)==1 & isa(a,'double')
M.affine(:,2) = M.affine(:,2) + a;
M.scmap = M.scmap + a;
M = center(M,M.center{1}+a);
else
error('Addition is not defined for these operands.')
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -