hpderiv.m

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

M
24
字号
function fprime = hpderiv(zp,z,beta,c)
%HPDERIV Derivative of the half-plane map.
%   HPDERIV(ZP,Z,BETA,C) returns the derivative at the points of ZP of
%   the Schwarz-Christoffel half-plane map defined by Z, BETA, and C.
%
%   See also HPPARAM, HPMAP.

%   Copyright 1998 by Toby Driscoll.
%   $Id: hpderiv.m 9 1998-05-10 04:55:10Z tad $

% Support old syntax
if nargin < 4
  c = 1;
end

zf = z(~isinf(z));
beta = beta(~isinf(z));
zprow = zp(:).';
fprime = zeros(size(zp));

npts = length(zp(:));
terms = zprow(ones(length(beta),1),:) - zf(:,ones(npts,1));
fprime(:) = c*exp(sum(log(terms).*beta(:,ones(npts,1))));

⌨️ 快捷键说明

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