⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plus.m

📁 computation of conformal maps to polygonally bounded regions
💻 M
字号:
function M = plus(M,a)
%   Add a constant to the image of a map (i.e., translate image).

%   Copyright (c) 2002 by Toby Driscoll.
%   $Id: plus.m 206 2002-09-13 20:21:47Z driscoll $

% May need to swap arguments
if isa(M,'double') & isa(a,'riesurfmap')
  tmp = M;
  M = a;
  a = tmp;
end

if length(a)==1 & isa(a,'double')
  M.center = M.center + a;
  M.scmap = M.scmap + a;
else
  error('Addition is not defined for these operands.')
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -