What is the algorithm used by svd function?
13 次查看(过去 30 天)
显示 更早的评论
I want to estimate computational complexity of svd function.
So, I command
edit svd
but I get a description of the comment of only how to use this function.
What algorithm is used by svd function? Could you tell me sorce code or documentation about svd function.
Thanks.
0 个评论
回答(2 个)
Christine Tobler
2021-2-18
We don't give information on what SVD algorithm we use, look up the LAPACK library for detailed descriptions. For practical purposes, you can assume the complexity of doing
[U, S, V] = svd(X, 'econ')
is O(m*n*min(m,n)), while the complexity of doing
[U, S, V] = svd(X)
is O(m*n*max(m,n)).
This wouldn't be easy to proof, since the SVD computation involves an iteration that needs to converge to each of the singular values, but the complexities above are the ones that dominate in all practical cases.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Eigenvalues 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!