scmapdiff.m

来自「computation of conformal maps to polygon」· M 代码 · 共 18 行

M
18
字号
function df = scmapdiff(f)
%SCMAPDIFF Derivative of a Schwarz-Christoffel map.
%   SCMAPDIFF(F) returns a dummy object that represents the derivative
%   of the SC map F. The only thing possible with this object is to EVAL 
%   it.
%   
%   See also SCMAPDIFF/EVAL, SCMAPDIFF/SUBSREF.

%   Copyright 1998-2001 by Toby Driscoll.
%   $Id: scmapdiff.m 160 2001-07-20 14:28:22Z driscoll $

if nargin > 0
  df.themap = f;
else
  df.themap = [];
end
df = class(df,'scmapdiff');

⌨️ 快捷键说明

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