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

  1. %FORMAT    Set output format.
  2. %    All computations in MATLAB are done in double precision.
  3. %    FORMAT may be used to switch between different output
  4. %     display formats as follows:
  5. %       FORMAT         Default. Same as SHORT.
  6. %       FORMAT SHORT   Scaled fixed point format with 5 digits.
  7. %       FORMAT LONG    Scaled fixed point format with 15 digits.
  8. %       FORMAT SHORT E Floating point format with 5 digits.
  9. %       FORMAT LONG E  Floating point format with 15 digits.
  10. %       FORMAT HEX     Hexadecimal format.
  11. %       FORMAT +       Compact format. The symbols +, - and blank
  12. %                      are printed for positive, negative and zero
  13. %                      elements. Imaginary parts are ignored.
  14. %       FORMAT BANK    Fixed format for dollars and cents.
  15. %       FORMAT COMPACT Suppress extra line-feeds.
  16. %       FORMAT LOOSE   Puts the extra line-feeds back in.
  17. %      FORMAT RAT     Approximation by ratio of small integers.
  18.  
  19. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  20. %    Built-in function.
  21.