scipy.io.
mminfo#
- scipy.io.mminfo(source)[源代码][源代码]#
从类似于 Matrix Market 文件的 ‘source’ 中返回大小和存储参数。
- 参数:
- 源代码str 或 file-like
Matrix Market 文件名(扩展名 .mtx)或类似打开文件的对象
- 返回:
- 行整数
矩阵的行数。
- cols整数
矩阵的列数。
- 条目整数
稀疏矩阵的非零条目数,或稠密矩阵的行数*列数。
- 格式str
可以是 ‘coordinate’ 或 ‘array’。
- 字段str
可以是 ‘real’, ‘complex’, ‘pattern’, 或 ‘integer’。
- 对称性str
可以是 ‘general’, ‘symmetric’, ‘skew-symmetric’, 或 ‘hermitian’。
注释
在 1.12.0 版本发生变更: C++ 实现。
示例
>>> 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')