File: Contents.m

package info (click to toggle)
freemat 4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 174,736 kB
  • ctags: 67,053
  • sloc: cpp: 351,060; ansic: 255,892; sh: 40,590; makefile: 4,323; perl: 4,058; asm: 3,313; pascal: 2,718; fortran: 1,722; ada: 1,681; ml: 1,360; cs: 879; csh: 795; python: 430; sed: 162; lisp: 160; awk: 5
file content (32 lines) | stat: -rw-r--r-- 1,506 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
%Contents of the UMFPACK sparse matrix toolbox:
%
% umfpack2        - computes x=A\b, x=A/b, or lu (A) for a sparse matrix A
% umfpack_make    - to compile umfpack2 for use in MATLAB
% umfpack_install - to compile and install umfpack2 and amd2 for use in MATLAB
% umfpack_details - details on all the options for using umfpack2 in MATLAB
% umfpack_report  - prints optional control settings and statistics
% umfpack_demo    - a lenghty demo
% umfpack_simple  - a simple demo
% umfpack_btf     - factorize A using a block triangular form
% umfpack_solve   - x = A\b or x = b/A
% lu_normest      - estimates norm (L*U-A, 1) without forming L*U-A
% luflop          - given L and U, computes # of flops required to compute them
% umfpack_test    - for testing umfpack2 (requires UFget)
%
% Example:
%   x = umfpack2 (A, '\', b) ;   % same as x = A\b, if A square and unsymmetric
%
% See also these built-in functions:
% umfpack           the built-in version of UMFPACK
% amd               symmetric minimum degree ordering
% colamd            unsymmetric column approx minimum degree ordering
% symamd            symmetric approx minimum degree ordering, based on colamd
%
% NOTE: UMFPACK is a built-in function in MATLAB, used in x=A\b.  This is the
% source code for the built-in umfpack, but the MATLAB function has been renamed
% here to umfpack2, to avoid a filename clash with itself.
%
% Copyright 1995-2007 by Timothy A. Davis.
% All Rights Reserved.  Type umfpack_details for License.

help Contents