Interface for reading double variables.
More...
|
integer function | nf_get_var_cpx_double (ncid, varid, cvals) |
| Read a 64bit complex value.
|
|
integer function | nf_get_var_double (ncid, varid, dvals) |
| Read a double value.
|
|
integer function | nf_get_var_1d_double (ncid, varid, dvals) |
| Read a double valued array.
|
|
integer function | nf_get_var_1d_cpx_double (ncid, varid, cvals) |
| Read a 64bit complex valued array.
|
|
integer function | nf_get_var_2d_double (ncid, varid, dvals) |
| Read a double valued 2D array.
|
|
integer function | nf_get_var_2d_cpx_double (ncid, varid, cvals) |
| Read a 64bit complex valued 2D array.
|
|
integer function | nf_get_var_3d_double (ncid, varid, dvals) |
| Read a double valued 3D array.
|
|
integer function | nf_get_var_3d_cpx_double (ncid, varid, cvals) |
| Read a 64bit complex valued 3D array.
|
|
Interface for reading double variables.
◆ nf_get_var_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
real (real64), intent(out) |
dvals |
|
) |
| |
Read a double value.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | dvals | Double to store the value. |
◆ nf_get_var_1d_cpx_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_1d_cpx_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
complex (real64), dimension(:), intent(out) |
cvals |
|
) |
| |
Read a 64bit complex valued array.
Netcdf does not support complex types directly. Instead these values are interweaved into a double array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | cvals | Complex array to store the value. |
◆ nf_get_var_1d_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_1d_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
real (real64), dimension(:), intent(out) |
dvals |
|
) |
| |
Read a double valued array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | dvals | Double array to store the value. |
◆ nf_get_var_2d_cpx_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_2d_cpx_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
complex (real64), dimension(:,:), intent(out) |
cvals |
|
) |
| |
Read a 64bit complex valued 2D array.
Netcdf does not support complex types directly. Instead these values are interweaved into a double array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | cvals | Complex array to store the value. |
◆ nf_get_var_2d_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_2d_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
real (real64), dimension(:,:), intent(out) |
dvals |
|
) |
| |
Read a double valued 2D array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | dvals | Double array to store the value. |
◆ nf_get_var_3d_cpx_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_3d_cpx_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
complex (real64), dimension(:,:,:), intent(out) |
cvals |
|
) |
| |
Read a 64bit complex valued 3D array.
Netcdf does not support complex types directly. Instead these values are interweaved into a double array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | cvals | Complex array to store the value. |
◆ nf_get_var_3d_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_3d_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
real (real64), dimension(:,:,:), intent(out) |
dvals |
|
) |
| |
Read a double valued 3D array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | dvals | Double array to store the value. |
◆ nf_get_var_cpx_double()
integer function netcdf_inc::nf_get_var_double::nf_get_var_cpx_double |
( |
integer, intent(in) |
ncid, |
|
|
integer, intent(in) |
varid, |
|
|
complex (real64), intent(out) |
cvals |
|
) |
| |
Read a 64bit complex value.
Netcdf does not support complex types directly. Instead these values are interweaved into a real array.
- Parameters
-
[in] | ncid | Netcdf file id. |
[in] | varid | Variable id. |
[out] | cvals | Complex to store the value. |
The documentation for this interface was generated from the following file: