⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_cg.m

📁 Matrix Iteration Methods. Matlab Implementation.
💻 M
字号:
function test_it = test_cg()%% function[test_it] = test_cg()%% test_cg.m tests cg.m. It generates several test systems and % applies the CG solution algorithm as implemented in cg.m.%% This and the other algorithm specific testers are modifications% of tester.m, so some unnecessary or extraneous code is included.%% Created August, 2006 by Richard Barrett, rbarrett@ornl.gov.% ============================================================================   % ---------------   % Initialization.   % ---------------   no_soln_cg   = 0;   guess_err_cg = 0;                      num_failures    = 0;   num_tests    = 6;   ep  = eps;   tol = ep * 1000;   % -----------------------------------------------------------------   % Iterate over linear systems, applying solution algorithm to each.   % -----------------------------------------------------------------   for test = 1:num_tests      test      A = matgen( test*10 );             % form test matrix      [sizeA,sizeA] = size(A);      max_it = sizeA * 10;      normA = norm( A,inf );      if ( test == 1 | test == 2 | test == 3 | test == 6 ),         for i = 1:sizeA,                % set rhs = row sums            temp = 0.0;            for j = 1:sizeA,               temp = temp + A(i,j);            end            b(i,1) = temp;         end      else          b = ones(sizeA,1);              % set rhs = unit vector      end      if ( test < 4 ),         M = eye(sizeA);                 % no preconditioning      else         M = diag(diag(A));              % diagonal preconditioning      end      if ( test < 6 ),         xk = zeros(sizeA,1);            % initial guess = zero vector      else         xk = A \ b;                     % initial guess = solution      end      % ----------------      % Apply algorithm.      % ----------------      if ( test == 1 | test == 2 | test == 4 | test == 6 ),          [x, error, iter, flag_cg] = cg(A, xk, b, M, max_it, tol);         if ( flag_cg ~= 0 & test ~= 6 ),            no_soln_cg = no_soln_cg + 1;            'cg failed to converge for'            test, error            num_failures = num_failures + 1;         end         if ( test == 6 & iter ~= 0 & flag_cg ~= 0 ),            guess_err_cg = guess_err_cg + 1;            'cg.m  failed for initial guess = solution'            test, iter, flag_cg            num_failures = num_failures + 1;         end      end   end   % -----------------------   % Print results to stdio.   % -----------------------   TESTING = '             COMPLETE'   if ( num_failures == 0 ),      RESULTS = '             ALL TESTS PASSED', end   if ( no_soln_cg ~= 0 ),      'cg failed test (failed to converge)',   elseif ( guess_err_cg ~= 0 ),      'cg failed test (initial guess = solution error)',   else      'cg passed test';   end% -------------% End test_cg.m% -------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -