SciPy SVD vs. Numpy SVD

2019-06-17 01:32发布

Both SciPy and Numpy have built in functions for singular value decomposition (SVD). The commands are basically scipy.linalg.svd and numpy.linalg.svd. What is the difference between these two? Is any of them better than the other one?

1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-06-17 01:52

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.

查看更多
登录 后发表回答