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

📄 inv.m

📁 computation of conformal maps to polygonally bounded regions
💻 M
字号:
function fi = inv(f)
%INV    Invert a composite map if possible.
%   INV(F) will return a composite that is the inverse of F. However,
%   composites using INLINE maps cannot be inverted.

%   Copyright 2001 by Toby Driscoll.
%   $Id: inv.m 170 2001-07-20 15:19:52Z driscoll $

N = length(f.maps);
list = cell(1,N);
for n = 1:N
  m = N+1-n;
  if ~isa(f.maps{m},'inline')
    list{n} = inv(f.maps{m});
  else
    error('Can''t invert INLINE maps.')
  end
end
fi = composite(list{:});

⌨️ 快捷键说明

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