This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.io.FortranFile.read_reals¶
- FortranFile.read_reals(dtype='f8')[source]¶
Reads a record of a given type from the file, defaulting to a floating point number (real*8 in Fortran)
Parameters: dtype : dtype, optional
Data type specifying the size and endiness of the data.
Returns: data : ndarray
A one-dimensional array object.
See also