2 scipy稀疏csr矩阵之间的差异

时间:2017-10-17 20:25:46

标签: python scipy sparse-matrix

我有2 scipy.sparse.csr_matrix这样:

A = [ 1 0 1 0 0 1
      1 0 0 1 0 0
      0 1 0 0 0 0 ]

B = [ 1 0 1 0 1 1
      1 1 0 1 0 0
      1 1 1 0 0 0 ]

我愿意得到B中出现的“新人”但不在A中。

C = [ 0 0 0 0 1 0
      0 1 0 0 0 0
      1 0 1 0 0 0 ]

1 个答案:

答案 0 :(得分:1)

IIUC应该非常简单:

Object.defineProperty(document, 'createEvent', {
  value: jest.fn().mockReturnValue({
    initEvent: jest.fn(),
  }),
});