home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / math / matrix.pro < prev    next >
Encoding:
Text File  |  1988-05-03  |  2.6 KB  |  70 lines

  1.  
  2.  
  3. ------------ SIMTEL20 Ada Software Repository Proloque --------------
  4. --                                   -*
  5. -- Unit name    : MATRIX_PACKAGE
  6. -- Version       : 1.0
  7. -- Author    : Dr. Roger Lee
  8. --        : Naval Air Developement Center
  9. --        : Advanced Software Technology Division
  10. --        : Warminster Pa. 18974
  11. -- DDN Address    : LEE at NADC        
  12. -- Copyright    : (c) 1984 Roger Lee
  13. -- Date created    : Feb 84 
  14. -- Release date    : 7 Jun 85
  15. -- Last update     : Feb 84
  16. -- Machine/System Compiled/Run on : VMS VAX11/780 Telesoft Ada compiler
  17. --                                     -*
  18. -----------------------------------------------------------------------
  19. --                                     -*
  20. -- Keywords    : 
  21. ----------------: MATRIX,VECTOR
  22. --
  23. -- ABSTRACT    :
  24. ----------------: MATRIX_PACKAGE is a general purpose matrix package.
  25. -- It defines data types VECTOR and MATRIX, and contains functions
  26. -- to perform general matrix algebra operations.  It provides for addition,
  27. -- subtraction, and multiplication of VECTORS, MATRICES and SCALARS.
  28. -- It also provides for matrix inversion and vector dot product.
  29. --
  30. --                                      -*
  31. ---------------- Revision history --------------------------------------
  32. --                                      -*
  33. -- DATE        VERSION AUTHOR            HISTORY
  34. -- 2/84          1.0    Roger Lee               Initial Release
  35. --                                      -*
  36. ---------------- Distribution and Copyright ----------------------------       
  37. --                                      -*
  38. -- This prologue must be included in all copies of this software.
  39. --
  40. -- This software is copyright by the author.
  41. --
  42. -- This software is released to the Ada community.
  43. -- This software is released to the Public Domain (note:
  44. --   software released to the Public Domain is not subject
  45. --   to copyright protection).
  46. -- Restrictions on use or distribution:  NONE
  47. --                                      -*
  48. --------------------- Disclaimer ---------------------------------------
  49. --                                      -*
  50. -- This software and its documentation are provided "AS IS" and
  51. -- without any expressed or implied warranties whatsoever.
  52. -- No warranties as to performance, merchantability, or fitness
  53. -- for a particular purpose exist.
  54. --
  55. -- Because of the diverity of conditions and hardware under  
  56. -- which this software may be used, no warranty of fitness for
  57. -- a particular purpose is offered.  The user is advised to
  58. -- test the software thoroughly before relying on it.  The user 
  59. -- must assume the entire risk and liability of using this 
  60. -- software.
  61. --
  62. -- In no event shall any person or organization of people  be
  63. -- held responsible for any direct, indirect, consequential
  64. -- or inconsequential damages or lost profits.
  65. --                                       -*
  66. -------------------- END-PROLOGUE ---------------------------------------
  67. --
  68.  
  69.  
  70.