home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / sci / math / numanal / 3927 < prev    next >
Encoding:
Internet Message Format  |  1993-01-22  |  1.7 KB

  1. Path: sparky!uunet!haven.umd.edu!mimsy!stewart
  2. From: stewart@cs.umd.edu (G. W. Stewart)
  3. Newsgroups: sci.math.num-analysis
  4. Subject: Re: Condition Number Estimation and Column Selection
  5. Message-ID: <63598@mimsy.umd.edu>
  6. Date: 22 Jan 93 05:25:11 GMT
  7. References: <C14IEJ.343.1@cs.cmu.edu>
  8. Sender: news@mimsy.umd.edu
  9. Organization: U of Maryland, Dept. of Computer Science, Coll. Pk., MD 20742
  10. Lines: 27
  11.  
  12.  
  13.   In article <C14IEJ.343.1@cs.cmu.edu> bs36+@EDRC.CMU.EDU (Boyd T
  14.   Safrit) writes:
  15.  
  16.   I have been working with an equation solver with the
  17.   idea of adding in the capability of condition number estimation.  My
  18.   problem is this: I usually have a set of m equations in n variables,
  19.   where n > m.  The remaining variables are "fixed" by the user.  We
  20.   have had problems with some of the systems being ill conditioned. One
  21.   of the cures we have identified is for the user to pick new degrees of
  22.   freedom, or swapping some of the fixed variables in and some of the
  23.   unfixed variables out of the factorization (we use something like
  24.   Gaussian, but are looking at others.)  There are articles on
  25.   incremental estimation that mention applications te kinds of problems.
  26.   I would like to be able to give the user the proper set of variables
  27.   to swap in and out, with the idea of decreasing the conditioning of
  28.   the resulting system.  Does anyone have any information on this kind
  29.   of problem?  Thanks in advance.  Boyd Safrit
  30.  
  31. The problem of variable selection was once a hot topic in statistics,
  32. though the case considered was $m>n$; i.e., regression.  However,
  33. for your case a QR~decomposition with column pivoting should be
  34. adequate.  The LINPACK routines sqrdc and sqrsl should suit your
  35. application.
  36.  
  37. Pete Stewart
  38.  
  39.