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 / scripts / general / perror.m < prev    next >
Text File  |  1996-09-28  |  3KB  |  113 lines

  1. # Copyright (C) 1993, 1994, 1995 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function perror (name, err)
  16.  
  17. # usage: perror (name, err)
  18. #
  19. # Print an error message for error number `err' from function "name".
  20. #
  21. # Messages correspond to the following subroutine versions:
  22. #
  23. #   npsol : 4.0
  24. #   qpsol : 3.2
  25.  
  26.   if (nargin != 2)
  27.     usage ("perror (name, err)");
  28.   endif
  29.  
  30.   if (! isstr (name))
  31.     error ("perror: first argument must be a string");
  32.   endif
  33.  
  34.   if (! is_scalar (err))
  35.     error ("perror: second argument must be a scalar");
  36.   endif
  37.  
  38.   if (strcmp (name, "fsolve"))
  39.  
  40.     if (err == -2)
  41.       printf ("input error\n");
  42.     elseif (err == -1)
  43.       printf ("error encountered in user-supplied function\n");
  44.     elseif (err == 1)
  45.       printf ("solution converged to requested tolerance\n");
  46.     elseif (err == 4)
  47.       printf ("iteration limit exceeded\n");
  48.     elseif (err == 3)
  49.       printf ("iteration is not making good progress\n");
  50.     else
  51.       error ("perror: unrecognized error code for fsolve");
  52.     endif
  53.  
  54.   elseif (strcmp (name, "npsol"))
  55.  
  56.     if (err == 0)
  57.       printf ("optimal solution found\n");
  58.     elseif (err == 1)
  59.       printf ("weak local solution found\n");
  60.     elseif (err == 2)
  61.       printf ("no feasible point for linear constraints and bounds\n");
  62.     elseif (err == 3)
  63.       printf ("no feasible point found for nonlinear constraints\n");
  64.     elseif (err == 4)
  65.       printf ("iteration limit reached\n");
  66.     elseif (err == 6)
  67.       printf ("current point cannot be improved upon\n");
  68.     elseif (err == 7)
  69.       printf ("user-supplied derivatives appear to be incorrect\n");
  70.     elseif (err == 9)
  71.       printf ("internal error: invalid input parameter\n");
  72.     else
  73.       error ("perror: unrecognized error code for npsol");
  74.     endif
  75.  
  76.   elseif (strcmp (name, "qpsol"))
  77.  
  78.     if (err == 0)
  79.       printf ("optimal solution found\n");
  80.     elseif (err == 1)
  81.       printf ("weak local solution found\n");
  82.     elseif (err == 2)
  83.       printf ("solution appears to be unbounded\n");
  84.     elseif (err == 3)
  85.       printf ("solution appears optimal, but optimality can't be verified\n");
  86.     elseif (err == 4)
  87.       printf ("iterates of the QP phase appear to be cycling\n");
  88.     elseif (err == 5)
  89.       printf ("iteration limit reached during QP phase\n");
  90.     elseif (err == 6)
  91.       printf ("no feasible point found during LP phase\n");
  92.     elseif (err == 7)
  93.       printf ("iterates of the LP phase appear to be cycling\n");
  94.     elseif (err == 8)
  95.       printf ("iteration limit reached during LP phase\n");
  96.     elseif (err == 9)
  97.       printf ("internal error: invalid input parameter\n");
  98.     else
  99.       error ("perror: unrecognized error code for qpsol");
  100.     endif
  101.  
  102.   else
  103.  
  104.     error ("perror: unrecognized function name");
  105.  
  106.   endif
  107.  
  108. endfunction
  109.