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

  1. function info
  2. %INFO    Information about MATLAB and The MathWorks.
  3.  
  4. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  5.  
  6. clc
  7. disp(' ')
  8. disp('MATLAB is available for PC, Macintosh, Sun, VAX, Apollo, HP, ')
  9. disp('DECstation, SGI, RS/6000, Convex, and Cray computers. ')
  10. disp(' ')
  11. disp('Optional toolboxes include:')
  12. disp(' ')
  13. disp('    Signal Processing Toolbox')
  14. disp('    System Identification (Parametric Modelling) Toolbox')
  15. disp('    Optimization Toolbox')
  16. disp('    Neural Network Toolbox')
  17. disp('    Control System Toolbox')
  18. disp('    Robust-Control Toolbox')
  19. disp('    Mu-analysis and Synthesis Toolbox')
  20. disp('    Spline Toolbox')
  21. disp('    Chemometrics Toolbox')
  22. disp('    MMLE3 Identification Toolbox')
  23. disp('    SIMULINK (Dynamic System Simulation Software)')
  24. disp(' ')
  25. disp('Press any key for more. . .')
  26. pause,clc
  27. disp(' ')
  28. disp('For MATLAB assistance or information, contact:')
  29. disp(' ')
  30. disp('   The MathWorks, Inc.')
  31. disp('   24 Prime Park Way')
  32. disp('   Natick, MA 01760')
  33. disp(' ')
  34. disp('   Ph:  508-653-1415')
  35. disp('   FAX: 508-653-2997')
  36. disp(' ')
  37. disp('   Email:  ')
  38. disp('       tech@mathworks.com - Technical support')
  39. disp('       bugs@mathworks.com - Bug reports')
  40. disp('        doc@mathworks.com - Documentation error reports')
  41. disp('    suggest@mathworks.com - Product enhancement suggestions')
  42. disp('    service@mathworks.com - Order status, license renewals, passcodes')
  43. disp('  subscribe@mathworks.com - Subscribing User registration')
  44. disp('       info@mathworks.com - Sales, pricing, and general information')
  45. disp(' ')
  46. disp('Press any key for more. . .')
  47. pause,clc
  48.  
  49. disp(' ')
  50. disp('If you would like to become a Subscribing User, which subscribes')
  51. disp('you to our newsletter, send us your name and postal address.  Be')
  52. disp('sure to indicate the type of computer you are using and the license')
  53. disp('number or serial number displayed by executing the VER command.')
  54. disp('Send it by regular mail, FAX, or email to:')
  55. disp(' ')
  56. disp('   The MathWorks, Inc.')
  57. disp('   24 Prime Park Way')
  58. disp('   Natick, MA 01760')
  59. disp('   FAX: 508-653-2997')
  60. disp('   email: subscribe@mathworks.com')
  61. disp(' ')
  62. disp('Anybody can become a Subscribing User -- you don''t have to be the')
  63. disp('"officially licensed" user.')
  64.  
  65. disp(' ')
  66. disp('If you would like to join the MATLAB Users Group and receive')
  67. disp('the email MATLAB News digest, send your email')
  68. disp('address to: matlab-users-request@mcs.anl.gov')
  69. disp('Submissions to: matlab-users@mcs.anl.gov')
  70. disp('Library contributions to: matlab-library@mcs.anl.gov')
  71.  
  72. disp(' ')
  73. disp('Press any key for more. . .')
  74. pause, clc
  75. disp(' ')
  76. disp('Notice to U.S. GOVERNMENT users: If Licensee is acquiring the software')
  77. disp('on behalf of any unit or agency of the U.S. Government, the following')
  78. disp('shall apply:')
  79. disp('(a) For units of the Department of Defense:')
  80. disp('    RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the')
  81. disp('    Government is subject to restrictions as set forth in subparagraph')
  82. disp('    (c)(1)(ii) of the Rights in Technical Data Clause at DFARS 252.227-7013.')
  83. disp('(b) For any other unit or agency:')
  84. disp('    NOTICE - Notwithstanding any other lease or license agreement that')
  85. disp('    may pertain to, or accompany the delivery of, the computer software and')
  86. disp('    accompanying documentation, the rights of the Government regarding its')
  87. disp('    use, reproduction and disclosure are as set forth in Clause')
  88. disp('    52.227-19(c)(2) of the FAR.')
  89. disp('Manufacturer is The MathWorks, Inc., 24 Prime Park Way, Natick, MA 01760.')
  90. disp(' ')
  91.  
  92.  
  93.  
  94.  
  95.