home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / liboctave / dbleCHOL.cc < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  78 lines

  1. //                                        -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 1992, 1993, 1994, 1995 John W. Eaton
  5.  
  6. This file is part of Octave.
  7.  
  8. Octave is free software; you can redistribute it and/or modify it
  9. under the terms of the GNU General Public License as published by the
  10. Free Software Foundation; either version 2, or (at your option) any
  11. later version.
  12.  
  13. Octave is distributed in the hope that it will be useful, but WITHOUT
  14. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with Octave; see the file COPYING.  If not, write to the Free
  20. Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. */
  23.  
  24. #ifdef HAVE_CONFIG_H
  25. #include "config.h"
  26. #endif
  27.  
  28. #include "dbleCHOL.h"
  29. #include "mx-inlines.cc"
  30. #include "lo-error.h"
  31. #include "f77-uscore.h"
  32.  
  33. extern "C"
  34. {
  35.   int F77_FCN (dpotrf) (const char*, const int*, double*, const int*,
  36.             int*, long);
  37. }
  38.  
  39. int
  40. CHOL::init (const Matrix& a)
  41. {
  42.   int a_nr = a.rows ();
  43.   int a_nc = a.cols ();
  44.   if (a_nr != a_nc)
  45.     {
  46.       (*current_liboctave_error_handler) ("CHOL requires square matrix");
  47.       return -1;
  48.     }
  49.  
  50.   char uplo = 'U';
  51.  
  52.   int n = a_nc;
  53.   int info;
  54.  
  55.   double *h = dup (a.data (), a.length ());
  56.  
  57.   F77_FCN (dpotrf) (&uplo, &n, h, &n, &info, 1L);
  58.  
  59.   chol_mat = Matrix (h, n, n);
  60.  
  61. // If someone thinks of a more graceful way of doing this (or faster for
  62. // that matter :-)), please let me know!
  63.  
  64.   if (n > 1)
  65.     for (int j = 0; j < a_nc; j++)
  66.       for (int i = j+1; i < a_nr; i++)
  67.         chol_mat.elem (i, j) = 0.0;
  68.  
  69.   return info;
  70. }
  71.  
  72. /*
  73. ;;; Local Variables: ***
  74. ;;; mode: C++ ***
  75. ;;; page-delimiter: "^/\\*" ***
  76. ;;; End: ***
  77. */
  78.