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 / src / f-det.cc < prev    next >
C/C++ Source or Header  |  1996-09-28  |  3KB  |  133 lines

  1. // f-det.cc                                           -*- C++ -*-
  2. /*
  3.  
  4. Copyright (C) 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 "dbleDET.h"
  29. #include "CmplxDET.h"
  30.  
  31. #include "tree-const.h"
  32. #include "user-prefs.h"
  33. #include "gripes.h"
  34. #include "error.h"
  35. #include "utils.h"
  36. #include "help.h"
  37. #include "defun-dld.h"
  38.  
  39. DEFUN_DLD_BUILTIN ("det", Fdet, Sdet, 2, 1,
  40.   "det (X): determinant of a square matrix")
  41. {
  42.   Octave_object retval;
  43.  
  44.   int nargin = args.length ();
  45.  
  46.   if (nargin != 1)
  47.     {
  48.       print_usage ("det");
  49.       return retval;
  50.     }
  51.  
  52.   tree_constant arg = args(0);
  53.     
  54.   int nr = arg.rows ();
  55.   int nc = arg.columns ();
  56.  
  57.   if (nr == 0 && nc == 0)
  58.     {
  59.       retval = 1.0;
  60.       return retval;
  61.     }
  62.  
  63.   int arg_is_empty = empty_arg ("det", nr, nc);
  64.   if (arg_is_empty < 0)
  65.     return retval;
  66.   if (arg_is_empty > 0)
  67.     return Matrix (1, 1, 1.0);
  68.  
  69.   if (nr != nc)
  70.     {
  71.       gripe_square_matrix_required ("det");
  72.       return retval;
  73.     }
  74.  
  75.   if (arg.is_real_type ())
  76.     {
  77.       Matrix m = arg.matrix_value ();
  78.  
  79.       if (! error_state)
  80.     {
  81.       int info;
  82.       double rcond = 0.0;
  83.  
  84.       DET det = m.determinant (info, rcond);
  85.  
  86.       double d = 0.0;
  87.  
  88.       if (info == -1)
  89.         warning ("det: matrix singular to machine precision, rcond = %g",
  90.              rcond);
  91.       else
  92.         d = det.value ();
  93.  
  94.       retval = d;
  95.     }
  96.     }
  97.   else if (arg.is_complex_type ())
  98.     {
  99.       ComplexMatrix m = arg.complex_matrix_value ();
  100.  
  101.       if (! error_state)
  102.     {
  103.       int info;
  104.       double rcond = 0.0;
  105.  
  106.       ComplexDET det = m.determinant (info, rcond);
  107.  
  108.       Complex c = 0.0;
  109.  
  110.       if (info == -1)
  111.         warning ("det: matrix singular to machine precision, rcond = %g",
  112.              rcond);
  113.       else
  114.         c = det.value ();
  115.  
  116.       retval = c;
  117.     }
  118.     }
  119.   else
  120.     {
  121.       gripe_wrong_type_arg ("det", arg);
  122.     }
  123.  
  124.   return retval;
  125. }
  126.  
  127. /*
  128. ;;; Local Variables: ***
  129. ;;; mode: C++ ***
  130. ;;; page-delimiter: "^/\\*" ***
  131. ;;; End: ***
  132. */
  133.