home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / GENERAL.DI$ / LOOKFOR.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  989 b   |  22 lines

  1. %LOOKFOR Keyword search through the HELP entries.
  2. %    LOOKFOR XYZ looks for the string XYZ in the first comment line
  3. %    (the H1 line) of the HELP text in all M-files found on MATLABPATH.
  4. %    For all files in which a match occurs, LOOKFOR displays the H1 line.
  5. %
  6. %    For example, "lookfor inverse" finds at least a dozen matches,
  7. %    including the H1 lines containing "inverse hyperbolic cosine"
  8. %    "two-dimensional inverse FFT", and "pseudoinverse".
  9. %    Contrast this with "which inverse" or "what inverse", which run
  10. %    more quickly, but which probably fail to find anything because
  11. %    MATLAB does not ordinarily have a function "inverse".
  12. %
  13. %    In summary, WHAT lists the functions in a given directory,
  14. %    WHICH finds the directory containing a given function, and
  15. %    LOOKFOR finds all functions in all directories that might have
  16. %    something to do with a given key word.
  17. %
  18. %    See also DIR, HELP, WHO, WHAT, WHICH.
  19.  
  20. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  21. %    Built-in function.
  22.