No BSD License  

Highlights from
Schwarz-Christoffel Toolbox

image thumbnail
from Schwarz-Christoffel Toolbox by Toby Driscoll
Computes conformal maps to polygons, allowing easy solution of Laplace's equation.

scmapdiff(f)
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');

Contact us at files@mathworks.com