www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/SmallestSingularValuesOfSparseMatrixExample.m

    %% Smallest Singular Values
% Compute the five smallest singular values of a sparse matrix.
A = delsq(numgrid('C',15));
s = svds(A,5,'smallest')