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

« back to all changes in this revision

Viewing changes to SPQR/MATLAB/Contents.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2009-02-24 11:08:12 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090224110812-hawvr3dh5kjbvlae
debian/control: Add an epoch to the version number of
libsuitesparse-3.0.2 in replaces/conflicts for libcolamd-3.2.0
(really, closes: #516725)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
% SuiteSparseQR : a multifrontal, multithreaded, rank-revealing sparse QR
 
2
% factorization method.  Works for both real and complex sparse matrices.
 
3
%
 
4
% Files
 
5
%   spqr         - multithreaded multifrontal rank-revealing sparse QR.
 
6
%   spqr_demo    - short demo of SuiteSparseQR 
 
7
%   spqr_install - compile and install SuiteSparseQR
 
8
%   spqr_make    - compiles the SuiteSparseQR mexFunctions
 
9
%   spqr_qmult   - computes Q'*X, Q*X, X*Q', or X*Q with Q in Householder form.
 
10
%   spqr_solve   - solves a linear system or least squares problem via QR factorization.
 
11
%   spqr_singletons - finds the singleton permutation of a sparse matrix A.
 
12
%
 
13
% Example:
 
14
%   x = spqr_solve (A,b) ;  % solves a least-squares problem (like x=A\b)
 
15
 
 
16
% Copyright 2008, Timothy A. Davis, University of Florida