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

📄 test_bicg.m

📁 Matrix Iteration Methods. Matlab Implementation.
💻 M
字号:
function test_it = test_bicg()%% function[test_it] = test_bicg()%% test_bicg.m tests bicg.m. It generates several test systems and % applies the BiCG solution algorithm as implemented in bicg.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_bicg   = 0;   guess_err_bicg = 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 == 4 | test == 5 | test == 6 )          [x, error, iter, flag_bicg] = bicg(A, xk, b, M, max_it, tol);         if ( flag_bicg ~= 0 & test ~= 6 ),            no_soln_bicg = no_soln_bicg + 1;            'bicg failed to converge for', test, error            num_failures = num_failures + 1;         end         if ( test == 6 & iter ~= 0 & flag_bicg ~= 0 )            guess_err_bicg = guess_err_bicg + 1;            'bicg.m  failed for initial guess = solution'            test, iter, flag_bicg            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_bicg ~= 0 ),      'bicg failed test (failed to converge)',   elseif ( guess_err_bicg ~= 0 ),      'bicg failed test (initial guess = solution error)',   else      'bicg passed test';   end%  ---------------%  End test_bicg.m%  ---------------

⌨️ 快捷键说明

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