本文简要介绍 python 语言中 scipy.io.mminfo
的用法。
用法:
scipy.io.mminfo(source)#
从 Matrix Market file-like ‘source’ 返回大小和存储参数。
- source: str 或 file-like
Matrix Market 文件名(扩展名 .mtx)或打开 file-like 对象
- rows: int
矩阵行数。
- cols: int
矩阵列数。
- entries: int
稀疏矩阵的非零条目数或稠密矩阵的行*列数。
- format: str
‘coordinate’ 或‘array’。
- field: str
‘real’, ‘complex’, ‘pattern’或‘integer’。
- symmetry: str
‘general’, ‘symmetric’、“skew-symmetric”或‘hermitian’。
参数 ::
返回 ::
注意:
例子:
>>> from io import StringIO >>> from scipy.io import mminfo
>>> text = '''%%MatrixMarket matrix coordinate real general ... 5 5 7 ... 2 3 1.0 ... 3 4 2.0 ... 3 5 3.0 ... 4 1 4.0 ... 4 2 5.0 ... 4 3 6.0 ... 4 4 7.0 ... '''
mminfo(source)
返回源文件的行数、列数、格式、字段类型和对称属性。>>> mminfo(StringIO(text)) (5, 5, 7, 'coordinate', 'real', 'general')
相关用法
- Python SciPy io.mmread用法及代码示例
- Python SciPy io.mmwrite用法及代码示例
- Python SciPy io.whosmat用法及代码示例
- Python SciPy io.savemat用法及代码示例
- Python SciPy io.loadmat用法及代码示例
- Python SciPy io.netcdf_file用法及代码示例
- Python SciPy io.hb_read用法及代码示例
- Python SciPy io.FortranFile用法及代码示例
- Python SciPy io.readsav用法及代码示例
- Python SciPy io.hb_write用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy interpolative.reconstruct_matrix_from_id用法及代码示例
- Python SciPy interpolate.InterpolatedUnivariateSpline用法及代码示例
- Python SciPy interpolate.BSpline用法及代码示例
- Python SciPy integrate.quad_vec用法及代码示例
- Python SciPy interpolative.reconstruct_interp_matrix用法及代码示例
- Python SciPy interpolate.LSQSphereBivariateSpline用法及代码示例
- Python SciPy interpolate.griddata用法及代码示例
- Python SciPy integrate.cumulative_trapezoid用法及代码示例
- Python SciPy interpolate.splder用法及代码示例
- Python SciPy interpolate.LinearNDInterpolator用法及代码示例
- Python SciPy interpolate.PPoly用法及代码示例
- Python SciPy interpolate.NdBSpline用法及代码示例
- Python SciPy interpolate.pade用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.io.mminfo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。