index.php 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. include_once "includes/header.php";
  3. include_once "includes/navbar.php";
  4. ?>
  5. <p>
  6. JAMA is a proposed standard matrix class for Java. The JAMA introduction
  7. describes "JAMA : A Java Matrix Package" in this way:
  8. </p>
  9. <blockquote>
  10. JAMA is a basic linear algebra package for Java. It provides user-level classes for
  11. constructing and manipulating real, dense matrices. It is meant to provide sufficient
  12. functionality for routine problems, packaged in a way that is natural and understandable
  13. to non-experts. It is intended to serve as the standard matrix class for Java, and
  14. will be proposed as such to the Java Grande Forum and then to Sun. A straightforward
  15. public-domain reference implementation has been developed by the MathWorks and NIST as
  16. a strawman for such a class. We are releasing this version in order to obtain public
  17. comment. There is no guarantee that future versions of JAMA will be compatible with this one.
  18. </blockquote>
  19. <p>
  20. The development team below has successfully ported the JAMA API to PHP. You can explore
  21. this site to learn more about this project and it's current development status.
  22. </p>
  23. <?php
  24. include_once "includes/credits.php";
  25. include_once "includes/footer.php";
  26. ?>