function [root_min] = MinRootSearch(A); % compute eigenvalues of matrix A % returns the smallest one n = size(A); [U,D,V] = svd(full(A)); root_min = diag(D(n,n)); return;