~albertog/libpspio/trunk

« back to all changes in this revision

Viewing changes to src/jb_spline.c

  • Committer: Micael Oliveira
  • Date: 2015-09-14 07:39:04 UTC
  • Revision ID: mjt.oliveira@ulg.ac.be-20150914073904-yzhqy0n23i7s1vfo
Hidding contents of interpolation and jb_spline structures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 Copyright (C) 2011 John Burkardt
3
3
               2014 Alexandr Fonari
 
4
               2015 Micael Oliveira
4
5
 
5
6
This code is distributed under the GNU LGPL license.
6
7
 
22
23
 
23
24
 
24
25
/**********************************************************************
 
26
 * Data structures                                                    *
 
27
 **********************************************************************/
 
28
 
 
29
/**
 
30
 * Interpolation data structure
 
31
 */
 
32
struct jb_spline {
 
33
    /* Objects to be used with jb_spline */
 
34
    int np;       /**< JB spline structure */
 
35
    double* t;
 
36
    double* y;
 
37
    double* ypp;
 
38
};
 
39
 
 
40
 
 
41
/**********************************************************************
25
42
 * Global routines                                                    *
26
43
 **********************************************************************/
27
44