Very large matrices using Python and NumPy

后端 未结 11 1996
难免孤独
难免孤独 2020-11-22 13:51

NumPy is an extremely useful library, and from using it I\'ve found that it\'s capable of handling matrices which are quite large (10000 x 10000) easily, but begins to strug

11条回答
  •  自闭症患者
    2020-11-22 14:16

    Usually when we deal with large matrices we implement them as Sparse Matrices.

    I don't know if numpy supports sparse matrices but I found this instead.

提交回复
热议问题