Math::GSL::NTuple - Functions for creating and manipulating ntuples, sets of values


Math-GSL documentation  | view source Contained in the Math-GSL distribution.

Index


NAME

Top

Math::GSL::NTuple - Functions for creating and manipulating ntuples, sets of values

SYNOPSIS

Top

This module is partially implemented. Patches Welcome!

    use Math::GSL::NTuple qw /:all/;

DESCRIPTION

Top

Here is a list of all the functions in this module :

* <gsl_ntuple_create > - This function creates a new write-only ntuple file $filename for ntuples of size $size and returns a pointer to the newly created ntuple struct. Any existing file with the same name is truncated to zero length and overwritten. A pointer to memory for the current ntuple row $ntuple_data, which is an array reference, must be supplied—this is used to copy ntuples in and out of the file.
* <gsl_ntuple_write($ntuple)> - This function writes the current $ntuple $ntuple->{ntuple_data} of size $ntuple->{size} to the corresponding file.
* <gsl_ntuple_bookdata($ntuple)> - This function is a synonym for gsl_ntuple_write.
* <gsl_ntuple_read($ntuple)> - This function reads the current row of the ntuple file for ntuple and stores the values in $ntuple->{data}.
* <gsl_ntuple_project >
* <gsl_ntuple_close($ntuple)> - This function closes the ntuple file ntuple and frees its associated allocated memory.

For more informations on the functions, we refer you to the GSL offcial documentation: http://www.gnu.org/software/gsl/manual/html_node/

 Tip : search on google: site:http://www.gnu.org/software/gsl/manual/html_node/ name_of_the_function_you_want




AUTHORS

Top

Jonathan Leto <jonathan@leto.net> and Thierry Moisan <thierry.moisan@gmail.com>

COPYRIGHT AND LICENSE

Top


Math-GSL documentation  | view source Contained in the Math-GSL distribution.