SciPy SVD vs. Numpy SVD

后端 未结 2 1826
耶瑟儿~
耶瑟儿~ 2021-02-13 22:25

Both SciPy and Numpy have built in functions for singular value decomposition (SVD). The commands are basically scipy.linalg.svd and numpy.linalg.svd.

2条回答
  •  借酒劲吻你
    2021-02-13 22:50

    Apart from the error checking, the actual work seems to be done within lapack both with numpy and scipy.

    Without having done any benchmarking, I guess the performance should be identical.

提交回复
热议问题