sparse.h 421 B

12345678910111213141516
  1. #ifndef _sparse__h_
  2. #define _sparse__h_
  3. void sprsin_d( Matrix&, double, Vector&, IVectorl& );
  4. void sprsax_d( Vector&, IVectorl&, Vector&, Vector& );
  5. Vector sprsax_d_v( Vector&, IVectorl&, Vector& );
  6. void sprsin_c( CmplxMatrix&, double, CmplxVector&, IVectorl& );
  7. void sprsax_c( CmplxVector&, IVectorl&, CmplxVector&, CmplxVector& );
  8. CmplxVector sprsax_c_v( CmplxVector&, IVectorl&, CmplxVector& );
  9. #endif