home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 4.ddi / OPTIM.DI$ / CONTENTS.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  3.0 KB  |  73 lines

  1. % Optimization Toolbox.
  2. % Version 1.0c 28-Aug-92
  3. % Copyright (c) 1990-92 by The MathWorks, Inc.
  4. %
  5. % Nonlinear minimization of functions.
  6. %   attgoal    - Multi-objective goal attainment.
  7. %   constr     - Constrained minimization.
  8. %   fmin       - Unconstrained minimization, scalar case.
  9. %   fminu      - Unconstrained minimization using gradient search.
  10. %   fmins      - Unconstrained minimization using simplex search.
  11. %   fsolve     - Nonlinear equation solution.
  12. %   leastsq    - Nonlinear least squares.
  13. %   minimax    - Minimax solution.
  14. %   seminf     - Semi-infinite minimization.
  15. %
  16. % Minimization of matrix problems.
  17. %   lp         - Linear programming.
  18. %   qp         - Quadratic programming.
  19. %   nnls       - Non-negative least squares.
  20. % Controlling defaults and options.
  21. %   foptions   - Parameter settings.
  22. %
  23. % Demonstrations.
  24. %   optdemo    - Demonstration menu.
  25. %   tutdemo    - Tutorial walk-through.
  26. %   bandemo    - Minimization of banana function.
  27. %   goaldemo   - Goal attainment.
  28. %   dfildemo   - Finite-precision filter design.
  29. %   datdemo    - Fitting data to a curve.
  30.  
  31. % Internally Used Utility Routines
  32. %
  33. %   Cubic Interpolation Routines
  34. %   cubic      - interpolates four points to find the maximum value
  35. %   cubici1    - interpolates 2 pts and gradients to estimate minimum
  36. %   cubici2    - interpolates 3 points and 1 gradient
  37. %   cubici3    - interpolates 2 pts and gradients to find step and min
  38. %
  39. %   Quadratic Interpolation Routines
  40. %   quad2      - interpolates three points to find the maximum value
  41. %   quadinter  - interpolates three points to estimate minimum
  42. %
  43. %   Demonstration Utility Routines
  44. %   eigfun     - function to return sorted eigenvalues (used in goaldemo)
  45. %   elimone    - eliminates a variable (used by dfildemo)
  46. %   filtfun    - frequency response and roots (used by dfildemo)
  47. %   filtfun2   - frequency response norm and roots (used by dfildemo)
  48. %   fitfun     - return error norm in fitting data (used by datdemo)
  49. %   fitfun2    - return vector of errors in fitting data (used by datdemo)
  50. %
  51. %   Semi-infinite Utility Routines
  52. %   semifun    - translates semi-infinite problem to constrained problem
  53. %   findmax    - interpolates the maxima in a vector of data 
  54. %   findmax2   - interpolates the maxima in a matrix of data 
  55. %   v2sort     - sorts two vectors and then removes missing elements
  56. %
  57. %   Goal-attainment Utility Routines
  58. %   goalfun    - translates goal-attainment problem to constrained problem
  59. %   goalgra    - translates gradient in goal-attainment problem
  60. %
  61. %   Test Routines
  62. %   toptim     - optimization test-suite
  63. %   toptimf    - test functions for optimization test-suite 
  64. %   toptimg    - test function gradients for optimization test-suite 
  65. %
  66. %   Other
  67. %   graderr    - used to check gradient discrepancy 
  68. %   lsint      - function to initialize leastsq routine
  69. %   optint     - function to initialize fminu routine
  70. %   updhess    - performs the Inverse Hessian Update
  71. %   searchq    - line search routine for fminu and leastsq functions
  72.