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

📄 vertex.m

📁 computation of conformal maps to polygonally bounded regions
💻 M
字号:
function [x,y] = vertex(p)
%VERTEX Vertices of a polygon.
%   VERTEX(P) returns the vertices of polygon P as a complex vector.
%   
%   [X,Y] = VERTEX(P) returns the vertices as two real vectors.
%   
%   See also POLYGON.

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

x = p.vertex;
if nargout == 2
  y = imag(x);
  x = real(x);
end

⌨️ 快捷键说明

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