home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / SOFT / LIBMAT.ZIP / MATSVD.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-16  |  980 b   |  31 lines

  1. /**************************************************/
  2. /*     matsvd.hpp header for SVD functions        */
  3. /**************************************************/
  4.  
  5.  
  6. /**************************************************/
  7. /*            MatClass Source File                */
  8. /*       Copyright of C. R. Birchenhall           */
  9. /*       University of Manchester, UK.            */
  10. /*   MatClass is freeware. This file should be    */
  11. /* made freely available to users of any software */
  12. /* whose creation is wholly or partly dependent   */
  13. /*                on this file.                   */
  14. /**************************************************/
  15.  
  16. #ifndef MATRIX_H
  17. #include "matrix.hpp"
  18. #endif
  19.  
  20. #ifndef MATSVD_H
  21.  
  22. #define MATSVD_H
  23.  
  24. INDEX svdcmp( matrix& a, matrix& w, matrix& v, matError& error ) ;
  25. INDEX svdBackSub( const matrix& a, const matrix& w, 
  26.                  const matrix& v, const matrix& b,
  27.                  matrix& x, matError& error ) ;
  28.  
  29. #endif
  30.  
  31.