Difference between revisions of "Sporth"

From QETLAB
Jump to navigation Jump to search
m
(Uploaded v1.01)
Line 2: Line 2:
 
|name=sporth
 
|name=sporth
 
|desc=Returns a sparse orthonormal basis for the range
 
|desc=Returns a sparse orthonormal basis for the range
|upd=May 10, 2010
+
|upd=December 13, 2012
|v=1.00
+
|v=1.01
 
|rel=[[spnull]]
 
|rel=[[spnull]]
 
|lic=1
 
|lic=1
Line 11: Line 11:
 
==Syntax==
 
==Syntax==
 
* <tt>Q = sporth(S)</tt>
 
* <tt>Q = sporth(S)</tt>
* <tt>[Q,r] = sporth(S)</tt>
+
* <tt>Q = sporth(S,TOL)</tt>
 +
* <tt>[Q,r] = sporth(S,TOL)</tt>
  
 
==Argument descriptions==
 
==Argument descriptions==
 
===Input arguments===
 
===Input arguments===
 
* <tt>S</tt>: The matrix to have its range computed.
 
* <tt>S</tt>: The matrix to have its range computed.
 +
* <tt>TOL</tt> (optional, default <tt>norm(S,'fro') * eps(class(S))</tt>): The numerical tolerance used.
  
 
===Output arguments===
 
===Output arguments===

Revision as of 01:55, 14 December 2012

sporth
Returns a sparse orthonormal basis for the range

Other toolboxes required none
Related functions spnull
License license_sporth.txt
This is a helper function that only exists to aid other functions in QETLAB. If you are an end-user of QETLAB, you likely will never have a reason to use this function.

sporth is a function that computes an orthonormal basis for the range of a full or sparse matrix. When the matrix is sparse, this computation is performed via the QR decomposition and is typically much faster than using orth(full(S)). This function is useful in particular for computing the rank of a sparse matrix without having to use the (slow) rank(full(S)) or the (often inaccurate) sprank(S).

Syntax

  • Q = sporth(S)
  • Q = sporth(S,TOL)
  • [Q,r] = sporth(S,TOL)

Argument descriptions

Input arguments

  • S: The matrix to have its range computed.
  • TOL (optional, default norm(S,'fro') * eps(class(S))): The numerical tolerance used.

Output arguments

  • Q: A matrix whose columns form an orthonormal basis for the range of S.
  • r (optional): The rank of S.

Examples

The following example gives a 4-by-4 matrix whose range is spanned by the two vectors $[1,0,0,0]^T$ and $[0,0,1,0]^T$:

>> S = sparse(4,4);
>> S(1,1) = 1; S(3,2) = 1;
>> sporth(S)

ans =

   (1,1)        1
   (3,2)        1

Note that the output is sparse because S is sparse. If the input is full then the output will be full as well:

>> sporth(full(S))

ans =

     1     0
     0     0
     0    -1
     0     0

If we just want to compute the rank of S, we can do the following:

>> [~,r] = sporth(S)

r =

     2

External links