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

« back to all changes in this revision

Viewing changes to AMD/MATLAB/Contents.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
%Contents of the AMD sparse matrix ordering package:
2
2
%
3
 
% amd2          p = amd2 (A), the approximate minimum degree ordering of A
4
 
% amd_demo      a demo of amd2, using the can_24 matrix
5
 
% amd_make      to compile amd2 for use in MATLAB
6
 
% can_24.mat    a sample sparse matrix from the Harwell/Boeing collection
 
3
% amd2          - p = amd2 (A), the approximate minimum degree ordering of A
 
4
% amd_demo      - a demo of amd2, using the can_24 matrix
 
5
% amd_make      - to compile amd2 for use in MATLAB
 
6
% amd_install   - compile and install amd2 for use in MATLAB
7
7
%
8
8
% See also:  amd, amd2, colamd, symamd, colmmd, symmmd, umfpack
9
9
%
10
10
% Note that amd2 and the built-in amd function in MATLAB 7.3 and later are one
11
11
% and the same.
12
12
%
13
 
% --------------------------------------------------------------------------
14
 
% AMD Version 2.0, Copyright (c) 2006 by Timothy A. Davis,
15
 
% Patrick R. Amestoy, and Iain S. Duff.  See ../README.txt for License.
16
 
% email: davis at cise.ufl.edu    CISE Department, Univ. of Florida.
17
 
% web: http://www.cise.ufl.edu/research/sparse/amd
18
 
% --------------------------------------------------------------------------
 
13
% Example:
 
14
%   p = amd2 (A) ;
 
15
 
 
16
% Copyright 1994-2007, Tim Davis, University of Florida,
 
17
% Patrick R. Amestoy, and Iain S. Duff. 
19
18
 
20
19
help Contents