1VS(3) User Contributed Perl Documentation VS(3)
2
3
4
6 PDL::IO::HDF - An interface librairie for HDF file.
7
9 use PDL;
10 use PDL::IO::HDF::VS;
11
12 #### no doc for now ####
13
15 This librairy provide functions to manipulate HDF files with VS and V
16 interface (reading, writting, ...)
17
18 For more infomation on HDF, see http://hdf.ncsa.uiuc.edu/
19
20 new
21 Open or create a new HDF object with VS and V interface.
22
23 Arguments:
24 1 : The name of the HDF file.
25 If you want to write to it, prepend the name with the '+' character : "+name.hdf"
26 If you want to create it, prepend the name with the '-' character : "-name.hdf"
27 Otherwise the file will be opened in read only mode.
28
29 Returns the hdf object (die on error)
30
31 my $hdf = PDL::IO::HDF::VS->new("file.hdf");
32
33 close
34 Close the VS interface.
35
36 no arguments
37
38 my $result = $hdf->close();
39
41 Judd Taylor, Orbital Systems, Ltd. judd dot t at orbitalsystems dot
42 com
43
45 Olivier Archer olivier.archer@ifremer.fr contribs of Patrick Leilde
46 patrick.leilde@ifremer.fr
47
49 perl(1), PDL(1), PDL::IO::HDF(1).
50
51
52
53perl v5.12.3 2011-03-31 VS(3)