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

📄 setfilter.m

📁 This toolbox contains Matlab code for several graph and mesh partitioning methods, including geometr
💻 M
字号:
function B = setfilter(A)% SETFILTER : Sort and remove duplicates.%% B = setfilter(A) returns a row vector with one occurrence%     of each different element of A, in sorted order.%% Based on code by Asko Huuskonen, Finnish Meteorological Institute,% Asko.Huuskonen@fmi.fi, posted to comp.soft-sys.matlab.% This version by John Gilbert, Xerox PARC, 27 Sep 1993% Copyright (c) 1990-1996 by Xerox Corporation.  All rights reserved.% HELP COPYRIGHT for complete copyright and licensing notice.if length(A) == 0    B = [];     return;end;B = sort(A(:));B(find(diff(B)==0)) = [];B = B.';

⌨️ 快捷键说明

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