scipy.sparse.

dia_array#

class scipy.sparse.dia_array(arg1, shape=None, dtype=None, copy=False, *, maxprint=None)[源代码]#

使用 DIAgonal 存储的稀疏数组。

这可以通过多种方式实例化
dia_array(D)

其中 D 是一个二维 ndarray

dia_array(S)

使用另一个稀疏数组或矩阵 S(等效于 S.todia())

dia_array((M, N), [dtype])

构造一个形状为 (M, N) 的空数组,dtype 是可选的,默认为 dtype='d'。

dia_array((data, offsets), shape=(M, N))

其中 data[k,:] 存储对角线 offsets[k] 的对角线条目(请参见下面的示例)

说明

稀疏数组可以用于算术运算:它们支持加法、减法、乘法、除法和矩阵幂。使用 DIAgonal 存储的稀疏数组不支持切片。

示例

>>> import numpy as np
>>> from scipy.sparse import dia_array
>>> dia_array((3, 4), dtype=np.int8).toarray()
array([[0, 0, 0, 0],
       [0, 0, 0, 0],
       [0, 0, 0, 0]], dtype=int8)
>>> data = np.array([[1, 2, 3, 4]]).repeat(3, axis=0)
>>> offsets = np.array([0, -1, 2])
>>> dia_array((data, offsets), shape=(4, 4)).toarray()
array([[1, 0, 3, 0],
       [1, 2, 0, 4],
       [0, 2, 3, 0],
       [0, 0, 3, 4]])
>>> from scipy.sparse import dia_array
>>> n = 10
>>> ex = np.ones(n)
>>> data = np.array([ex, 2 * ex, ex])
>>> offsets = np.array([-1, 0, 1])
>>> dia_array((data, offsets), shape=(n, n)).toarray()
array([[2., 1., 0., ..., 0., 0., 0.],
       [1., 2., 1., ..., 0., 0., 0.],
       [0., 1., 2., ..., 0., 0., 0.],
       ...,
       [0., 0., 0., ..., 2., 1., 0.],
       [0., 0., 0., ..., 1., 2., 1.],
       [0., 0., 0., ..., 0., 1., 2.]])
属性:
dtypedtype

数组的数据类型

shape2 元组

数组的形状

ndimint

维度数(始终为 2)

nnz

存储值的数量,包括显式零。

size

存储值的数量。

data

数组的 DIA 格式数据数组

offsets

数组的 DIA 格式偏移数组

T

转置。

方法

__len__()

arcsin()

逐元素反正弦。

arcsinh()

逐元素反双曲正弦。

arctan()

逐元素反正切。

arctanh()

逐元素反双曲正切。

asformat(format[, copy])

以传入的格式返回此数组/矩阵。

astype(dtype[, casting, copy])

将数组/矩阵元素强制转换为指定类型。

ceil()

逐元素向上取整。

conj([copy])

逐元素复共轭。

conjugate([copy])

逐元素复共轭。

copy()

返回此数组/矩阵的副本。

count_nonzero([axis])

非零条目的数量,等效于

deg2rad()

逐元素度数转弧度。

diagonal([k])

返回数组/矩阵的第 k 条对角线。

dot(other)

普通点积

expm1()

逐元素 expm1。

floor()

逐元素向下取整。

log1p()

逐元素 log1p。

maximum(other)

此数组/矩阵与另一个数组/矩阵之间的逐元素最大值。

mean([axis, dtype, out])

计算指定轴的算术平均值。

minimum(other)

此数组/矩阵与另一个数组/矩阵之间的逐元素最小值。

multiply(other)

与另一个数组/矩阵的逐点乘法。

nonzero()

数组/矩阵的非零索引。

power(n[, dtype])

此函数执行逐元素幂。

rad2deg()

逐元素弧度转度数。

reshape(self, shape[, order, copy])

在不更改其数据的情况下,为稀疏数组/矩阵赋予新的形状。

resize(*shape)

将数组/矩阵就地调整为 shape 给出的维度

rint()

逐元素四舍五入到最接近的整数。

setdiag(values[, k])

设置数组/矩阵的对角线或非对角线元素。

sign()

逐元素符号。

sin()

逐元素正弦。

sinh()

逐元素双曲正弦。

sqrt()

逐元素平方根。

sum([axis, dtype, out])

对给定轴上的数组/矩阵元素求和。

tan()

逐元素正切。

tanh()

逐元素双曲正切。

toarray([order, out])

返回此稀疏数组/矩阵的密集 ndarray 表示形式。

tobsr([blocksize, copy])

将此数组/矩阵转换为块稀疏行格式。

tocoo([copy])

将此数组/矩阵转换为坐标格式。

tocsc([copy])

将此数组/矩阵转换为压缩稀疏列格式。

tocsr([copy])

将此数组/矩阵转换为压缩稀疏行格式。

todense([order, out])

返回此稀疏数组的密集表示形式。

todia([copy])

将此数组/矩阵转换为稀疏 DIAgonal 格式。

todok([copy])

将此数组/矩阵转换为键字典格式。

tolil([copy])

将此数组/矩阵转换为列表的列表格式。

trace([offset])

返回稀疏数组/矩阵的对角线上的总和。

transpose([axes, copy])

反转稀疏数组/矩阵的维度。

trunc()

逐元素截断。

__mul__