scipy.sparse.dok_array.

asformat#

dok_array.asformat(format, copy=False)[source]#

以给定格式返回此数组/矩阵。

参数:
format{str, None}

所需的稀疏格式(“csr”、“csc”、“lil”、“dok”、“array” 等)或 None 表示不进行转换。

copybool, optional

如果为 True,则保证结果不会与 self 共享数据。

返回值:
A以给定格式表示的此数组/矩阵。