manpagez: man pages & more
info gsl-ref
Home | html | info | man
[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

22.1 The ntuple struct

Ntuples are manipulated using the gsl_ntuple struct. This struct contains information on the file where the ntuple data is stored, a pointer to the current ntuple data row and the size of the user-defined ntuple data struct.

 
typedef struct {
    FILE * file;
    void * ntuple_data;
    size_t size;
} gsl_ntuple;

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.