blob: ff4a796115f04d9ae0a78385cd1da043c2453fb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<html>
<head><title>
FORTRAN General Library API -- h5i
</title></head>
<body bgcolor="#FFFFFF">
<center>
<h1>The FORTRAN 90 API to HDF5<br>h5: General Library</h1>
</center>
<dl>
<p>
<p>
<hr>
<p>
<a name="h5open_f">
<p>
</a>
<dt><strong>FORTRAN interface:</strong>   <strong>h5open_f</strong>
<dt><strong>Purpose:</strong>
Initializes the HDF5 library and the Fortran90 interface.
<pre>
SUBROUTINE h5open_f(hdferr)
IMPLICIT NONE
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5open_f
</pre>
<p>
<p>
<hr>
<p>
<a name="h5close_f">
<p>
</a>
<dt><strong>FORTRAN interface:</strong>   <strong>h5close_f</strong>
<dt><strong>Purpose:</strong>
Closes the HDF5 library and the Fortran90 interface.
<pre>
SUBROUTINE h5close_f(hdferr)
IMPLICIT NONE
INTEGER, INTENT(OUT) :: hdferr ! Error code
END SUBROUTINE h5close_f
</pre>
</dl>
<p>
<p>
<hr>
<address>
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
</address>
Last modified: 19 February 2001
<br>
Describes HDF5 Release 1.5, Unreleased Development Branch
</body>
</html>
|