Next: Permutations in cyclic form, Previous: Applying Permutations, Up: Permutations [Index]
The library provides functions for reading and writing permutations to a file as binary data or formatted text.
This function writes the elements of the permutation p to the
stream stream in binary format. The function returns
GSL_EFAILED
if there was a problem writing to the file. Since the
data is written in the native binary format it may not be portable
between different architectures.
This function reads into the permutation p from the open stream
stream in binary format. The permutation p must be
preallocated with the correct length since the function uses the size of
p to determine how many bytes to read. The function returns
GSL_EFAILED
if there was a problem reading from the file. The
data is assumed to have been written in the native binary format on the
same architecture.
This function writes the elements of the permutation p
line-by-line to the stream stream using the format specifier
format, which should be suitable for a type of size_t.
In ISO C99 the type modifier z
represents size_t
, so
"%zu\n"
is a suitable format.9
The function returns GSL_EFAILED
if there was a problem writing
to the file.
This function reads formatted data from the stream stream into the
permutation p. The permutation p must be preallocated with
the correct length since the function uses the size of p to
determine how many numbers to read. The function returns
GSL_EFAILED
if there was a problem reading from the file.
In versions of the
GNU C library prior to the ISO C99 standard,
the type modifier Z
was used instead.
Next: Permutations in cyclic form, Previous: Applying Permutations, Up: Permutations [Index]