IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37533


Ignore:
Timestamp:
Oct 28, 2014, 8:46:16 PM (12 years ago)
Author:
eugene
Message:

adding legendre poly

Location:
branches/eam_branches/ipp-20140904/Ohana/src/libohana
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140904/Ohana/src/libohana/Makefile

    r37386 r37533  
    3535$(SRC)/time.$(ARCH).o            \
    3636$(SRC)/gaussj.$(ARCH).o          \
     37$(SRC)/legendre.$(ARCH).o        \
     38$(SRC)/gsl_utils.$(ARCH).o       \
    3739$(SRC)/vstats.$(ARCH).o          \
    3840$(SRC)/config.$(ARCH).o          \
  • branches/eam_branches/ipp-20140904/Ohana/src/libohana/include/ohana.h

    r37386 r37533  
    435435*/
    436436
    437 # endif
     437
     438/** gsl-based functions for legendre and related polynomials **/
     439
     440double ohana_gsl_sf_log_1plusx (double x, double *err);
     441double ohana_gsl_sf_lnpoch(const double a, const double x, double *err);
     442double ohana_gsl_lnpoch_pos (const double a, const double x, double *err);
     443double ohana_gsl_pochrel_smallx(const double a, const double x, double *err);
     444
     445double legendre_Pl (int l, double x, double *err);
     446double legendre_Plm (int l, int m, double x, double *err);
     447double legendre_Plm_sphere(int l, int m, double x, double *err);
     448
     449# endif
Note: See TracChangeset for help on using the changeset viewer.