Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
scipy /
io /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
_fast_matrix_market
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
_harwell_boeing
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
arff
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
matlab
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
tests
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
__init__.py
2.67
KB
-rw-r--r--
2025-04-08 17:00
_fortran.py
10.64
KB
-rw-r--r--
2025-04-08 17:00
_idl.py
26.44
KB
-rw-r--r--
2025-04-08 17:00
_mmio.py
31.34
KB
-rw-r--r--
2025-04-08 17:00
_netcdf.py
38.3
KB
-rw-r--r--
2025-04-08 17:00
_test_fortran.cpython-311-x86_64-linux-gnu.so
62.04
KB
-rwxr-xr-x
2025-04-08 17:00
harwell_boeing.py
538
B
-rw-r--r--
2025-04-08 17:00
idl.py
504
B
-rw-r--r--
2025-04-08 17:00
mmio.py
526
B
-rw-r--r--
2025-04-08 17:00
netcdf.py
533
B
-rw-r--r--
2025-04-08 17:00
wavfile.py
27.98
KB
-rw-r--r--
2025-04-08 17:00
Save
Rename
""" ================================== Input and output (:mod:`scipy.io`) ================================== .. currentmodule:: scipy.io SciPy has many modules, classes, and functions available to read data from and write data to a variety of file formats. .. seealso:: `NumPy IO routines <https://www.numpy.org/devdocs/reference/routines.io.html>`__ MATLAB® files ============= .. autosummary:: :toctree: generated/ loadmat - Read a MATLAB style mat file (version 4 through 7.1) savemat - Write a MATLAB style mat file (version 4 through 7.1) whosmat - List contents of a MATLAB style mat file (version 4 through 7.1) For low-level MATLAB reading and writing utilities, see `scipy.io.matlab`. IDL® files ========== .. autosummary:: :toctree: generated/ readsav - Read an IDL 'save' file Matrix Market files =================== .. autosummary:: :toctree: generated/ mminfo - Query matrix info from Matrix Market formatted file mmread - Read matrix from Matrix Market formatted file mmwrite - Write matrix to Matrix Market formatted file Unformatted Fortran files =============================== .. autosummary:: :toctree: generated/ FortranFile - A file object for unformatted sequential Fortran files FortranEOFError - Exception indicating the end of a well-formed file FortranFormattingError - Exception indicating an inappropriate end Netcdf ====== .. autosummary:: :toctree: generated/ netcdf_file - A file object for NetCDF data netcdf_variable - A data object for the netcdf module Harwell-Boeing files ==================== .. autosummary:: :toctree: generated/ hb_read -- read H-B file hb_write -- write H-B file Wav sound files (:mod:`scipy.io.wavfile`) ========================================= .. module:: scipy.io.wavfile .. autosummary:: :toctree: generated/ read write WavFileWarning Arff files (:mod:`scipy.io.arff`) ================================= .. module:: scipy.io.arff .. autosummary:: :toctree: generated/ loadarff MetaData ArffError ParseArffError """ # matfile read and write from .matlab import loadmat, savemat, whosmat # netCDF file support from ._netcdf import netcdf_file, netcdf_variable # Fortran file support from ._fortran import FortranFile, FortranEOFError, FortranFormattingError from ._fast_matrix_market import mminfo, mmread, mmwrite from ._idl import readsav from ._harwell_boeing import hb_read, hb_write # Deprecated namespaces, to be removed in v2.0.0 from . import arff, harwell_boeing, idl, mmio, netcdf, wavfile __all__ = [s for s in dir() if not s.startswith('_')] from scipy._lib._testutils import PytestTester test = PytestTester(__name__) del PytestTester