IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37534


Ignore:
Timestamp:
Oct 29, 2014, 7:40:51 AM (12 years ago)
Author:
eugene
Message:

adding more gsl code

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

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140904/Ohana/src/libohana/include/gsl_utils.h

    r37533 r37534  
    88# define GSL_IS_ODD(n) ((n) & 1)
    99
     10typedef struct {
     11  double *c;    /* coefficients                */
     12  int order;    /* order of expansion          */
     13  double a;     /* lower interval point        */
     14  double b;     /* upper interval point        */
     15  int order_sp; /* effective single precision order */
     16} cheb_series;
     17
  • branches/eam_branches/ipp-20140904/Ohana/src/libohana/src/gsl_utils.c

    r37533 r37534  
    11# include <ohana.h>
    22# include <gsl_utils.h>
    3 
    4 typedef struct {
    5   double *c;    /* coefficients                */
    6   int order;    /* order of expansion          */
    7   double a;     /* lower interval point        */
    8   double b;     /* upper interval point        */
    9   int order_sp; /* effective single precision order */
    10 } cheb_series;
    113
    124/*-*-*-*-*-*-*-*-*-*-*-* Private Section *-*-*-*-*-*-*-*-*-*-*-*/
Note: See TracChangeset for help on using the changeset viewer.