modulus.m

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

M
11
字号
function mu = modulus(M)
%MODULUS Conformal modulus of the generalized quadrilateral.
%   Returns the conformal modulus of the polygon in the rectmap (the
%   aspect ratio of the source rectangle).

%   Copyright 1998 by Toby Driscoll.
%   $Id: modulus.m 7 1998-05-10 04:37:19Z tad $

z = M.prevertex;
mu = max(imag(z)) / (2*max(real(z)));

⌨️ 快捷键说明

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