home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 1.ddi / README.TXT < prev    next >
Encoding:
Text File  |  1993-03-31  |  8.5 KB  |  202 lines

  1.  
  2. README.TXT file for MATLAB(R) Version 4.0 and SIMULINK(TM) Version 1.2c 
  3. for Microsoft Windows
  4. (C) Copyright 1993, The MathWorks, Inc.
  5.  
  6.  
  7. The following features, bugs, and documentation errors in MATLAB 4.0 for 
  8. Microsoft Windows were discovered after the paper documentation went to 
  9. press.
  10. ========================================================================
  11. 1.  Typo in External Interface Guide regarding Watcom C/386 Compiler.
  12. 2.  GPF with ATI Graphics Ultra card and Mach 32 driver.
  13. 3.  Setting the Pointer property from an M-file.
  14. 4.  SelectionType improperly documented.
  15. 5.  exp(Inf) returns NaN, not Inf.
  16. 6.  Some demos don't clear the figure before starting.
  17. 7.  Mask indexing doesn't work on sparse matrices.
  18. 8.  How to change the ticks on logarithmic axes.
  19. 9.  Special keys lost when typing ahead.
  20. 10. Printing may crash MATLAB when under Norton Desktop.
  21. 11. Graphics may be off one or two pixels.
  22. 12. Displaying the value 7 as a character does not beep the beeper.
  23. 13. MATLAB's prompt is not captured in diary files.
  24. 14. Command window occasionally jumps back while scrolling.
  25. 15. Changing dots-per-inch when printing may fail.
  26. 16. WATCOM C/386 compiler does not support NaN correctly.
  27. 17. fopen defaults to binary, not ASCII.
  28. 18. No movie, getframe, or interpolated shading on 16-color machines.
  29. 19. One point at which MATLAB doesn't yield to Background Processing.
  30. 20. Re-starting a demo after an interruption may fail.
  31. 21. Denormalized numbers display incorrectly.
  32.  
  33. ========================================================================
  34. 1. Typo in External Interface Guide regarding WATCOM C/386 Compiler.
  35.  
  36. Page 1-33, External Interface Guide, lines 7-11 should be replaced with
  37.  
  38. To use the WATCOM C/386 Compiler, make sure that your PATH and INCLUDE 
  39. environment variables are set as described in the _WATCOM_ 
  40. _C/386_User's_Guide_.  In addition, you will need to set your WATCOM 
  41. environment variable as follows:
  42.  
  43. SET WATCOM=<watcom>;<watcom>\LIB386;<watcom>\LIB386\DOS
  44.  
  45. Then type (all on one line):
  46.  
  47. WCL386 -p -3s -7 -l=dos4g -I<matlab>\EXTERN\INCLUDE MATTEST1.C
  48.      <matlab>\EXTERN\LIB\LIBMATWC.LIB
  49.  
  50. Remember to replace <watcom> and <matlab> with the actual path 
  51. specifiers for your WATCOM and MATLAB root directories.
  52. ----------
  53. 2. GPF with ATI Graphics Ultra card and Mach 32 driver.
  54.  
  55. Running MATLAB graphics on a machine with the ATI Graphics Ultra 
  56. accelerator card and the Mach 32 driver may cause General Protection 
  57. Faults, especially at 'movie' or 'getframe' commands.  We suggest that 
  58. users use the 8514/a driver instead of the Mach 32.  We have contacted 
  59. ATI and are working with them to solve the problem.
  60. ----------
  61. 3. Setting the Pointer property from an M-file.
  62.  
  63. If an M-file sets the figure property Pointer, this change will not take 
  64. effect unless followed by a 'pause' command with no arguments.  Setting 
  65. the Pointer property from the command line works.
  66. ----------
  67. 4. SelectionType improperly documented.
  68.  
  69. A figure property called SelectionType exists and is documented in the 
  70. Reference Guide.  The documentation is correct for UNIX but wrong for 
  71. Windows.
  72.  
  73. SelectionType 'open' is not supported.  Pressing the left button returns 
  74. 'normal'.  Pressing the right button or control-left button returns 
  75. 'extend'.  Pressing the middle button (or both buttons of a two-button 
  76. mouse) or shift-left button returns 'alt'.
  77. ----------
  78. 5. exp(Inf) returns NaN, not Inf.
  79.  
  80. exp(Inf) returns NaN instead of Inf.  This causes a similar error in 
  81. functions which call exp.  For example, sinh(Inf) and cosh(Inf) return 
  82. NaN instead of Inf.
  83. ----------
  84. 6. Some demos don't clear the figure before starting.
  85.  
  86. Some of the demos don't clear the current figure before they 
  87. start up.  For best results, clear the current figure (by typing 'clf 
  88. reset') before typing 'demo' at the command line.
  89. ----------
  90. 7. Mask indexing doesn't work on sparse matrices.
  91.  
  92. Mask indexing (using indices that are all zeros and ones to select only 
  93. certain elements of a matrix) does not work for sparse matrices.  For 
  94. example, if A is a full 3x3 matrix, then A([1 0 0],:) returns the first 
  95. row of A.  If S is a sparse 3x3 matrix, then S([1 0 0],:) generates an 
  96. error.
  97. ----------
  98. 8. How to change the ticks on logarithmic axes.
  99.  
  100. The default axis label for a logarithmic axis is simply "ten to the N" 
  101. for some integer n.  If you change a logarithmic axis's Tick property to 
  102. include non-powers of ten, then you must also specify that axis's Label 
  103. property.
  104. ----------
  105. 9. Special keys lost when typing ahead.
  106.  
  107. You may type ahead while MATLAB is busy processing.  Arrow keys and 
  108. control characters may be lost, however.
  109. ----------
  110. 10. Printing may crash MATLAB when under Norton Desktop.
  111.  
  112. We have observed intermittent failures with print commands when running 
  113. MATLAB under Norton Desktop.  We're still isolating the specific 
  114. problems and will keep you informed of any new discoveries.
  115. ----------
  116. 11. Graphics may be off one or two pixels.
  117.  
  118. If you set the Units property of a figure or an axes to 'pixels', you 
  119. may see slight inaccuracies (one or two pixels) in the resulting display 
  120. of some objects.  For example, an image will be one or two pixels 
  121. smaller in both dimensions than expected if its parent axes is expressed 
  122. in pixels.
  123. ----------
  124. 12. Displaying the value 7 as a character does not beep the beeper.
  125. For example, if you type 'setstr(7)' at the command line, MATLAB won't 
  126. beep the beeper.
  127. ----------
  128. 13. MATLAB's prompt is not captured in diary files.
  129. ----------
  130. 14. Command window occasionally jumps back while scrolling.
  131.  
  132. If you display a large amount of text to the command window, it may 
  133. occasionally jump to the top of the buffer while scrolling.
  134. ----------
  135. 15. Changing dots-per-inch when printing may fail.
  136.  
  137. Some print drivers allow you to specify resolution in dots per inch.  
  138. Changing the value from its default may cause the plot to not print or 
  139. print incorrectly.
  140. ----------
  141. 16. WATCOM C/386 compiler does not support NaN correctly.
  142.  
  143. User-written MEX files that are compiled with the WATCOM compiler may 
  144. handle NaN incorrectly.  Since this version of MATLAB was written with 
  145. the WATCOM C/386 compiler, we have attempted to work around the NaN 
  146. problems, but a few bugs still remain:  Any NaNs in sparse matrices 
  147. loaded from .mat files will turn into zeros or denormalized numbers.  
  148. Attempting to set an element of a sparse matrix to NaN from the command 
  149. line will actually set it to zero.  Functions on sparse matrices will 
  150. usually return zeros in place of NaN but are unpredictable.  
  151.  
  152. We have contacted WATCOM with regard to these problems and do not know 
  153. when they will be fixed.  Users are advised to take care to check their 
  154. inputs with the ╙isnan╘ and/or ╙finite╘ functions if they want to 
  155. guarantee proper handling of NaNs.
  156. ----------
  157. 17. fopen defaults to binary, not ASCII.
  158.  
  159. MATLAB is one of the few applications that will open a file as binary by 
  160. default.  This represents a change from MATLAB 3.5.  Please see HELP 
  161. FOPEN.
  162. ----------
  163. 18. No movie, getframe, or interpolated shading on 16-color machines.
  164.  
  165. The movie and getframe commands are unavailable on 16-color machines.  
  166. Interpolated shading does not work on 16-color machines.  Objects will 
  167. come up some solid color, usually black, instead.
  168. ----------
  169. 19. One point at which MATLAB doesn't yield to Background Processing.
  170.  
  171. The "Background Processing Enabled" mode will allow you to work in other 
  172. windows while MATLAB is processing.  Once a figure window begins drawing 
  173. a plot, however, it may not yield to other processes until it is done.
  174. ----------
  175. 20. Re-starting a demo after an interruption may fail.
  176.  
  177. The 'demo' command depends on some global variables to keep track of 
  178. where it is.  Aborting out of a demo sequence and then typing 'demo' 
  179. again will result in unpredictable behavior unless you typed 'clear 
  180. global' before starting the second demo.
  181. ----------
  182. 21. Denormalized numbers display incorrectly.
  183.  
  184. Denormalized numbers (numbers with absolute value less than about 
  185. 1e-308) will not display correctly when  format short  or  
  186. format short e  is in effect.
  187.  
  188. ========================================================================
  189.  
  190. MATLAB is a registered trademark, and SIMULINK is a trademark of The 
  191. MathWorks, Inc.
  192.  
  193. Microsoft is a registered trademark, and Windows is a trademark of 
  194. Microsoft Corporation.
  195.  
  196. ATI and Graphics Ultra are trademarks of ATI Technologies Inc.
  197.  
  198. Norton Desktop is a trademark of Symantec Corporation.
  199.  
  200.  
  201.  
  202.