sepquality.m
来自「This toolbox contains Matlab code for se」· M 代码 · 共 20 行
M
20 行
function cutsize = sepquality(v,A,xyz)% SEPQUALITY : Separator quality.%% cutsize = sepquality(v,A,xyz)% Return the number of edges crossing a partition of the vertices of A,% at positions xyz, by the plane described by v.%% See GEOPART.%% John Gilbert and Shanghua Teng, 1992-1993.% Copyright (c) 1990-1996 by Xerox Corporation. All rights reserved.% HELP COPYRIGHT for complete copyright and licensing notice.[a,b] = partition(xyz,v);if min(length(a),length(b)) cutsize = nnz(A(a,b));else cutsize = 0;end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?