本文简要介绍 python 语言中 scipy.io.hb_write
的用法。
用法:
scipy.io.hb_write(path_or_open_file, m, hb_info=None)#
写入HB-format 文件。
- path_or_open_file: path-like 或 file-like
如果是 file-like 对象,则按原样使用。否则,它会在写入之前打开。
- m: sparse-matrix
要写的稀疏矩阵
- hb_info: HBInfo
包含 meta-data 用于写入
- None
参数 ::
返回 ::
注意:
目前不支持完整的Harwell-Boeing 格式。支持的函数有:
assembled, non-symmetric, real matrices
integer for pointer/indices
exponential format for float values, and int format
例子:
我们可以读写harwell-boeing格式文件:
>>> from scipy.io import hb_read, hb_write >>> from scipy.sparse import csr_matrix, eye >>> data = csr_matrix(eye(3)) # create a sparse matrix >>> hb_write("data.hb", data) # write a hb file >>> print(hb_read("data.hb")) # read a hb file (0, 0) 1.0 (1, 1) 1.0 (2, 2) 1.0
相关用法
- Python SciPy io.hb_read用法及代码示例
- Python SciPy io.whosmat用法及代码示例
- Python SciPy io.savemat用法及代码示例
- Python SciPy io.loadmat用法及代码示例
- Python SciPy io.mminfo用法及代码示例
- Python SciPy io.netcdf_file用法及代码示例
- Python SciPy io.mmread用法及代码示例
- Python SciPy io.FortranFile用法及代码示例
- Python SciPy io.readsav用法及代码示例
- Python SciPy io.mmwrite用法及代码示例
- 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.hb_write。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。