📄 mtimes.m
字号:
function M = mtimes(M,c)
% Scale the image of a map by a complex constant.
% Copyright (c) 1998 by Toby Driscoll.
% $Id: mtimes.m,v 1.1 1998/06/29 22:34:13 tad Exp $
% May need to swap arguments
if isa(M,'double') & isa(c,'hplmap')
tmp = M;
M = c;
c = tmp;
end
M.constant = c*M.constant;
M.scmap = c*M.scmap;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -