home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / IOFUN.DI$ / CONTENTS.M next >
Encoding:
Text File  |  1993-03-07  |  916 b   |  29 lines

  1. % Low-level file I/O functions.
  2. % File opening and closing.
  3. %   fopen       - Open file.
  4. %   fclose      - Close file.
  5. %
  6. % Unformatted I/O.
  7. %   fread       - Read binary data from file.
  8. %   fwrite      - Write binary data to file.
  9. %
  10. % Formatted I/O.
  11. %   fscanf      - Read formatted data from file.
  12. %   fprintf     - Write formatted data to file.
  13. %   fgetl       - Read line from file, discard newline character.
  14. %   fgets       - Read line from file, keep newline character.
  15. %
  16. % File positioning.
  17. %   ferror      - Inquire file I/O error status.
  18. %   feof        - Test for end-of-file.
  19. %   fseek       - Set file position indicator.
  20. %   ftell       - Get file position indicator.
  21. %   frewind     - Rewind file.
  22. %
  23. % String conversion.
  24. %   sprintf     - Write formatted data to string.
  25. %   sscanf      - Read string under format control.
  26.  
  27. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  28.