当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python SciPy io.mminfo用法及代码示例


本文简要介绍 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')

相关用法


注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.io.mminfo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。