function test7 %TEST7 test sparse2 % Example: % test7 % See also cholmod_test % Copyright 2006, Timothy A. Davis, University of Florida fprintf ('=================================================================\n'); fprintf ('test7: test sparse2\n') ; randn ('state', 0) ; rand ('state', 0) ; % Prob = UFget (437) Prob = UFget (750) %#ok A = Prob.A ; [m n] = size (A) ; tic [i j x] = find (A) ; t = toc ; fprintf ('find time %8.4f\n', t) ; tic ; B = sparse2 (i,j,x,m,n) ; %#ok t1 = toc ; fprintf ('tot: %8.6f\n', t1) tic ; B = sparse2 (i,j,x,m,n) ; %#ok t1 = toc ; fprintf ('tot: %8.6f again \n', t1) ; tic ; B1 = sparse2 (i,j,x) ; %#ok t1 = toc ; fprintf ('tot: %8.6f (i,j,x)\n', t1) ; nz = length (x) ; p = randperm (nz) ; i2 = i(p) ; j2 = j(p) ; x2 = x(p) ; %#ok tic ; B = sparse2 (i,j,x,m,n) ; %#ok t1 = toc ; fprintf ('tot: %8.6f (jumbled)\n', t1) ; ii = [i2 ; i2] ; jj = [j2 ; j2] ; xx = rand (2*nz,1) ; tic ; D = sparse2 (ii,jj,xx,m,n) ; %#ok t1 = toc ; fprintf ('tot %8.6f (duplicates)\n', t1) ; fprintf ('test7 passed\n') ;