~logan/ubuntu/trusty/suitesparse/4.2.1-3ubuntu1

« back to all changes in this revision

Viewing changes to CHOLMOD/MATLAB/metis.m

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme
  • Date: 2007-05-29 09:36:29 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529093629-zowquo0b7slkk6nc
Tags: 3.0.0-2
* suitesparse builds properly twice in a row
* Bug fix: "suitesparse - FTBFS: Broken build depens: libgfortran1-dev",
  thanks to Bastian Blank (Closes: #426349).
* Bug fix: "suitesparse_3.0.0-1: FTBFS: build-depends on
  libgfortran1-dev", thanks to Steve Langasek (Closes: #426354).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
function p = metis (A, mode)                                                %#ok
2
 
%METIS:  nested dissection ordering via METIS_NodeND.
 
2
%METIS nested dissection ordering via METIS_NodeND.
 
3
%
 
4
%   Example:
3
5
%   p = metis(A)        returns p such chol(A(p,p)) is typically sparser than
4
6
%                       chol(A).  Uses tril(A) and assumes A is symmetric.
5
7
%   p = metis(A,'sym')  the same as p=metis(A).
13
15
%   Requires METIS, authored by George Karypis, Univ. of Minnesota.  This
14
16
%   MATLAB interface, via CHOLMOD, is by Tim Davis.
15
17
%
16
 
%   See also NESDIS, BISECT, CCOLAMD, CSYMAMD
 
18
%   See also NESDIS, BISECT
17
19
 
18
 
%   Copyright 2006, Timothy A. Davis
 
20
%   Copyright 2006-2007, Timothy A. Davis
19
21
%   http://www.cise.ufl.edu/research/sparse
20
22
 
21
23
error ('metis mexFunction not found') ;