-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcg.cpp
4644 lines (4341 loc) · 96.7 KB
/
cg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# include <cmath>
# include <cstdlib>
# include <cstring>
# include <ctime>
# include <iomanip>
# include <iostream>
using namespace std;
# include "cg.hpp"
//****************************************************************************80
int i4_min ( int i1, int i2 )
//****************************************************************************80
//
// Purpose:
//
// I4_MIN returns the minimum of two I4's.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 13 October 1998
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int I1, I2, two integers to be compared.
//
// Output, int I4_MIN, the smaller of I1 and I2.
//
{
int value;
if ( i1 < i2 )
{
value = i1;
}
else
{
value = i2;
}
return value;
}
//****************************************************************************80
double *orth_random ( int n, int &seed )
//****************************************************************************80
//
// Purpose:
//
// ORTH_RANDOM returns the ORTH_RANDOM matrix.
//
// Discussion:
//
// The matrix is a random orthogonal matrix.
//
// Properties:
//
// The inverse of A is equal to A'.
// A is orthogonal: A * A' = A' * A = I.
// Because A is orthogonal, it is normal: A' * A = A * A'.
// Columns and rows of A have unit Euclidean norm.
// Distinct pairs of columns of A are orthogonal.
// Distinct pairs of rows of A are orthogonal.
// The L2 vector norm of A*x = the L2 vector norm of x for any vector x.
// The L2 matrix norm of A*B = the L2 matrix norm of B for any matrix B.
// det ( A ) = +1 or -1.
// A is unimodular.
// All the eigenvalues of A have modulus 1.
// All singular values of A are 1.
// All entries of A are between -1 and 1.
//
// Discussion:
//
// Thanks to Eugene Petrov, B I Stepanov Institute of Physics,
// National Academy of Sciences of Belarus, for convincingly
// pointing out the severe deficiencies of an earlier version of
// this routine.
//
// Essentially, the computation involves saving the Q factor of the
// QR factorization of a matrix whose entries are normally distributed.
// However, it is only necessary to generate this matrix a column at
// a time, since it can be shown that when it comes time to annihilate
// the subdiagonal elements of column K, these (transformed) elements of
// column K are still normally distributed random values. Hence, there
// is no need to generate them at the beginning of the process and
// transform them K-1 times.
//
// For computational efficiency, the individual Householder transformations
// could be saved, as recommended in the reference, instead of being
// accumulated into an explicit matrix format.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 11 July 2008
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Pete Stewart,
// Efficient Generation of Random Orthogonal Matrices With an Application
// to Condition Estimators,
// SIAM Journal on Numerical Analysis,
// Volume 17, Number 3, June 1980, pages 403-409.
//
// Parameters:
//
// Input, int N, the order of the matrix.
//
// Input/output, int &SEED, a seed for the random number
// generator.
//
// Output, double ORTH_RANDOM[N*N] the matrix.
//
{
double *a;
int i;
int j;
double *v;
double *x;
//
// Start with A = the identity matrix.
//
a = r8mat_zero_new ( n, n );
for ( i = 0; i < n; i++ )
{
a[i+i*n] = 1.0;
}
//
// Now behave as though we were computing the QR factorization of
// some other random matrix. Generate the N elements of the first column,
// compute the Householder matrix H1 that annihilates the subdiagonal elements,
// and set A := A * H1' = A * H.
//
// On the second step, generate the lower N-1 elements of the second column,
// compute the Householder matrix H2 that annihilates them,
// and set A := A * H2' = A * H2 = H1 * H2.
//
// On the N-1 step, generate the lower 2 elements of column N-1,
// compute the Householder matrix HN-1 that annihilates them, and
// and set A := A * H(N-1)' = A * H(N-1) = H1 * H2 * ... * H(N-1).
// This is our random orthogonal matrix.
//
x = new double[n];
for ( j = 0; j < n - 1; j++ )
{
//
// Set the vector that represents the J-th column to be annihilated.
//
for ( i = 0; i < j; i++ )
{
x[i] = 0.0;
}
for ( i = j; i < n; i++ )
{
x[i] = r8_normal_01 ( seed );
}
//
// Compute the vector V that defines a Householder transformation matrix
// H(V) that annihilates the subdiagonal elements of X.
//
// The COLUMN argument here is 1-based.
//
v = r8vec_house_column ( n, x, j+1 );
//
// Postmultiply the matrix A by H'(V) = H(V).
//
r8mat_house_axh ( n, a, v );
delete [] v;
}
delete [] x;
return a;
}
//****************************************************************************80
double *pds_random ( int n, int &seed )
//****************************************************************************80
//
// Purpose:
//
// PDS_RANDOM returns the PDS_RANDOM matrix.
//
// Discussion:
//
// The matrix is a "random" positive definite symmetric matrix.
//
// The matrix returned will have eigenvalues in the range [0,1].
//
// Properties:
//
// A is symmetric: A' = A.
//
// A is positive definite: 0 < x'*A*x for nonzero x.
//
// The eigenvalues of A will be real.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 15 June 2011
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int N, the order of the matrix.
//
// Input/output, int &SEED, a seed for the random
// number generator.
//
// Output, double PDS_RANDOM[N*N], the matrix.
//
{
double *a;
int i;
int j;
int k;
double *lambda;
double *q;
a = new double[n*n];
//
// Get a random set of eigenvalues.
//
lambda = r8vec_uniform_01_new ( n, seed );
//
// Get a random orthogonal matrix Q.
//
q = orth_random ( n, seed );
//
// Set A = Q * Lambda * Q'.
//
for ( j = 0; j < n; j++ )
{
for ( i = 0; i < n; i++ )
{
a[i+j*n] = 0.0;
for ( k = 0; k < n; k++ )
{
a[i+j*n] = a[i+j*n] + q[i+k*n] * lambda[k] * q[j+k*n];
}
}
}
delete [] lambda;
delete [] q;
return a;
}
//****************************************************************************80
double r8_normal_01 ( int &seed )
//****************************************************************************80
//
// Purpose:
//
// R8_NORMAL_01 samples the standard normal probability distribution.
//
// Discussion:
//
// The standard normal probability distribution function (PDF) has
// mean 0 and standard deviation 1.
//
// The Box-Muller method is used.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 06 August 2013
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input/output, int SEED, a seed for the random number generator.
//
// Output, double R8_NORMAL_01, a normally distributed random value.
//
{
double r1;
double r2;
const double r8_pi = 3.141592653589793;
double x;
r1 = r8_uniform_01 ( seed );
r2 = r8_uniform_01 ( seed );
x = sqrt ( -2.0 * log ( r1 ) ) * cos ( 2.0 * r8_pi * r2 );
return x;
}
//****************************************************************************80
double r8_sign ( double x )
//****************************************************************************80
//
// Purpose:
//
// R8_SIGN returns the sign of an R8.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 18 October 2004
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, double X, the number whose sign is desired.
//
// Output, double R8_SIGN, the sign of X.
//
{
double value;
if ( x < 0.0 )
{
value = -1.0;
}
else
{
value = 1.0;
}
return value;
}
//****************************************************************************80
double r8_uniform_01 ( int &seed )
//****************************************************************************80
//
// Purpose:
//
// R8_UNIFORM_01 returns a unit pseudorandom R8.
//
// Discussion:
//
// This routine implements the recursion
//
// seed = ( 16807 * seed ) mod ( 2^31 - 1 )
// u = seed / ( 2^31 - 1 )
//
// The integer arithmetic never requires more than 32 bits,
// including a sign bit.
//
// If the initial seed is 12345, then the first three computations are
//
// Input Output R8_UNIFORM_01
// SEED SEED
//
// 12345 207482415 0.096616
// 207482415 1790989824 0.833995
// 1790989824 2035175616 0.947702
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 09 April 2012
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Paul Bratley, Bennett Fox, Linus Schrage,
// A Guide to Simulation,
// Second Edition,
// Springer, 1987,
// ISBN: 0387964673,
// LC: QA76.9.C65.B73.
//
// Bennett Fox,
// Algorithm 647:
// Implementation and Relative Efficiency of Quasirandom
// Sequence Generators,
// ACM Transactions on Mathematical Software,
// Volume 12, Number 4, December 1986, pages 362-376.
//
// Pierre L'Ecuyer,
// Random Number Generation,
// in Handbook of Simulation,
// edited by Jerry Banks,
// Wiley, 1998,
// ISBN: 0471134031,
// LC: T57.62.H37.
//
// Peter Lewis, Allen Goodman, James Miller,
// A Pseudo-Random Number Generator for the System/360,
// IBM Systems Journal,
// Volume 8, Number 2, 1969, pages 136-143.
//
// Parameters:
//
// Input/output, int &SEED, the "seed" value. Normally, this
// value should not be 0. On output, SEED has been updated.
//
// Output, double R8_UNIFORM_01, a new pseudorandom variate,
// strictly between 0 and 1.
//
{
const int i4_huge = 2147483647;
int k;
double r;
if ( seed == 0 )
{
cerr << "\n";
cerr << "R8_UNIFORM_01 - Fatal error!\n";
cerr << " Input value of SEED = 0.\n";
exit ( 1 );
}
k = seed / 127773;
seed = 16807 * ( seed - k * 127773 ) - k * 2836;
if ( seed < 0 )
{
seed = seed + i4_huge;
}
r = ( double ) ( seed ) * 4.656612875E-10;
return r;
}
//****************************************************************************80
void r83_cg ( int n, double a[], double b[], double x[] )
//****************************************************************************80
//
// Purpose:
//
// R83_CG uses the conjugate gradient method on an R83 system.
//
// Discussion:
//
// The R83 storage format is used for a tridiagonal matrix.
// The superdiagonal is stored in entries (1,2:N), the diagonal in
// entries (2,1:N), and the subdiagonal in (3,1:N-1). Thus, the
// original matrix is "collapsed" vertically into the array.
//
// The matrix A must be a positive definite symmetric band matrix.
//
// The method is designed to reach the solution after N computational
// steps. However, roundoff may introduce unacceptably large errors for
// some problems. In such a case, calling the routine again, using
// the computed solution as the new starting estimate, should improve
// the results.
//
// Example:
//
// Here is how an R83 matrix of order 5 would be stored:
//
// * A12 A23 A34 A45
// A11 A22 A33 A44 A55
// A21 A32 A43 A54 *
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 04 June 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Frank Beckman,
// The Solution of Linear Equations by the Conjugate Gradient Method,
// in Mathematical Methods for Digital Computers,
// edited by John Ralston, Herbert Wilf,
// Wiley, 1967,
// ISBN: 0471706892,
// LC: QA76.5.R3.
//
// Parameters:
//
// Input, int N, the order of the matrix.
// N must be positive.
//
// Input, double A[3*N], the matrix.
//
// Input, double B[N], the right hand side vector.
//
// Input/output, double X[N].
// On input, an estimate for the solution, which may be 0.
// On output, the approximate solution vector.
//
{
double alpha;
double *ap;
double beta;
int i;
int it;
double *p;
double pap;
double pr;
double *r;
double rap;
//
// Initialize
// AP = A * x,
// R = b - A * x,
// P = b - A * x.
//
ap = r83_mv ( n, n, a, x );
r = new double[n];
for ( i = 0; i < n; i++ )
{
r[i] = b[i] - ap[i];
}
p = new double[n];
for ( i = 0; i < n; i++ )
{
p[i] = b[i] - ap[i];
}
//
// Do the N steps of the conjugate gradient method.
//
for ( it = 1; it <= n; it++ )
{
//
// Compute the matrix*vector product AP=A*P.
//
delete [] ap;
ap = r83_mv ( n, n, a, p );
//
// Compute the dot products
// PAP = P*AP,
// PR = P*R
// Set
// ALPHA = PR / PAP.
//
pap = r8vec_dot_product ( n, p, ap );
pr = r8vec_dot_product ( n, p, r );
if ( pap == 0.0 )
{
delete [] ap;
break;
}
alpha = pr / pap;
//
// Set
// X = X + ALPHA * P
// R = R - ALPHA * AP.
//
for ( i = 0; i < n; i++ )
{
x[i] = x[i] + alpha * p[i];
}
for ( i = 0; i < n; i++ )
{
r[i] = r[i] - alpha * ap[i];
}
//
// Compute the vector dot product
// RAP = R*AP
// Set
// BETA = - RAP / PAP.
//
rap = r8vec_dot_product ( n, r, ap );
beta = - rap / pap;
//
// Update the perturbation vector
// P = R + BETA * P.
//
for ( i = 0; i < n; i++ )
{
p[i] = r[i] + beta * p[i];
}
}
//
// Free memory.
//
delete [] p;
delete [] r;
return;
}
//****************************************************************************80
double *r83_dif2 ( int m, int n )
//****************************************************************************80
//
// Purpose:
//
// R83_DIF2 returns the DIF2 matrix in R83 format.
//
// Example:
//
// N = 5
//
// 2 -1 . . .
// -1 2 -1 . .
// . -1 2 -1 .
// . . -1 2 -1
// . . . -1 2
//
// Properties:
//
// A is banded, with bandwidth 3.
//
// A is tridiagonal.
//
// Because A is tridiagonal, it has property A (bipartite).
//
// A is a special case of the TRIS or tridiagonal scalar matrix.
//
// A is integral, therefore det ( A ) is integral, and
// det ( A ) * inverse ( A ) is integral.
//
// A is Toeplitz: constant along diagonals.
//
// A is symmetric: A' = A.
//
// Because A is symmetric, it is normal.
//
// Because A is normal, it is diagonalizable.
//
// A is persymmetric: A(I,J) = A(N+1-J,N+1-I).
//
// A is positive definite.
//
// A is an M matrix.
//
// A is weakly diagonally dominant, but not strictly diagonally dominant.
//
// A has an LU factorization A = L * U, without pivoting.
//
// The matrix L is lower bidiagonal with subdiagonal elements:
//
// L(I+1,I) = -I/(I+1)
//
// The matrix U is upper bidiagonal, with diagonal elements
//
// U(I,I) = (I+1)/I
//
// and superdiagonal elements which are all -1.
//
// A has a Cholesky factorization A = L * L', with L lower bidiagonal.
//
// L(I,I) = sqrt ( (I+1) / I )
// L(I,I-1) = -sqrt ( (I-1) / I )
//
// The eigenvalues are
//
// LAMBDA(I) = 2 + 2 * COS(I*PI/(N+1))
// = 4 SIN^2(I*PI/(2*N+2))
//
// The corresponding eigenvector X(I) has entries
//
// X(I)(J) = sqrt(2/(N+1)) * sin ( I*J*PI/(N+1) ).
//
// Simple linear systems:
//
// x = (1,1,1,...,1,1), A*x=(1,0,0,...,0,1)
//
// x = (1,2,3,...,n-1,n), A*x=(0,0,0,...,0,n+1)
//
// det ( A ) = N + 1.
//
// The value of the determinant can be seen by induction,
// and expanding the determinant across the first row:
//
// det ( A(N) ) = 2 * det ( A(N-1) ) - (-1) * (-1) * det ( A(N-2) )
// = 2 * N - (N-1)
// = N + 1
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 04 June 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Robert Gregory, David Karney,
// A Collection of Matrices for Testing Computational Algorithms,
// Wiley, 1969,
// ISBN: 0882756494,
// LC: QA263.68
//
// Morris Newman, John Todd,
// Example A8,
// The evaluation of matrix inversion programs,
// Journal of the Society for Industrial and Applied Mathematics,
// Volume 6, Number 4, pages 466-476, 1958.
//
// John Todd,
// Basic Numerical Mathematics,
// Volume 2: Numerical Algebra,
// Birkhauser, 1980,
// ISBN: 0817608117,
// LC: QA297.T58.
//
// Joan Westlake,
// A Handbook of Numerical Matrix Inversion and Solution of
// Linear Equations,
// John Wiley, 1968,
// ISBN13: 978-0471936756,
// LC: QA263.W47.
//
// Parameters:
//
// Input, int M, N, the order of the matrix.
//
// Output, double A[3*N], the matrix.
//
{
double *a;
int i;
int j;
int mn;
a = new double[3*n];
for ( j = 0; j < n; j++ )
{
for ( i = 0; i < 3; i++ )
{
a[i+j*3] = 0.0;
}
}
mn = i4_min ( m, n );
for ( j = 1; j < mn; j++ )
{
a[0+j*3] = -1.0;
}
for ( j = 0; j < mn; j++ )
{
a[1+j*3] = 2.0;
}
for ( j = 0; j < mn -1; j++ )
{
a[2+j*3] = -1.0;
}
if ( n < m )
{
a[2+(mn-1)*3] = -1.0;
}
return a;
}
//****************************************************************************80
double *r83_mv ( int m, int n, double a[], double x[] )
//****************************************************************************80
//
// Purpose:
//
// R83_MV multiplies a R83 matrix times a vector.
//
// Discussion:
//
// The R83 storage format is used for a tridiagonal matrix.
// The superdiagonal is stored in entries (1,2:N), the diagonal in
// entries (2,1:N), and the subdiagonal in (3,1:N-1). Thus, the
// original matrix is "collapsed" vertically into the array.
//
// Example:
//
// Here is how a R83 matrix of order 5 would be stored:
//
// * A12 A23 A34 A45
// A11 A22 A33 A44 A55
// A21 A32 A43 A54 *
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 04 June 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int M, N, the number of rows and columns.
//
// Input, double A[3*N], the R83 matrix.
//
// Input, double X[N], the vector to be multiplied by A.
//
// Output, double R83_MV[M], the product A * x.
//
{
double *b;
int i;
int mn;
b = new double[m];
for ( i = 0; i < m; i++ )
{
b[i] = 0.0;
}
mn = i4_min ( m, n );
for ( i = 0; i < mn; i++ )
{
b[i] = b[i] + a[1+i*3] * x[i];
}
for ( i = 0; i < mn - 1; i++ )
{
b[i] = b[i] + a[0+(i+1)*3] * x[i+1];
}
for ( i = 1; i < mn; i++ )
{
b[i] = b[i] + a[2+(i-1)*3] * x[i-1];
}
if ( n < m )
{
b[n] = b[n] + a[2+(n-1)*3] * x[n-1];
}
else if ( m < n )
{
b[m-1] = b[m-1] + a[0+m*3] * x[m];
}
return b;
}
//****************************************************************************80
double *r83_res ( int m, int n, double a[], double x[], double b[] )
//****************************************************************************80
//
// Purpose:
//
// R83_RES computes the residual R = B-A*X for R83 matrices.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 04 June 2014
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, int M, the number of rows of the matrix.
// M must be positive.
//
// Input, int N, the number of columns of the matrix.
// N must be positive.
//
// Input, double A[3*N], the matrix.
//
// Input, double X[N], the vector to be multiplied by A.
//
// Input, double B[M], the desired result A * x.
//
// Output, double R83_RES[M], the residual R = B - A * X.
//
{
int i;
double *r;
r = r83_mv ( m, n, a, x );
for ( i = 0; i < m; i++ )
{
r[i] = b[i] - r[i];
}
return r;
}
//****************************************************************************80
void r83s_cg ( int n, double a[], double b[], double x[] )
//****************************************************************************80
//
// Purpose:
//
// R83S_CG uses the conjugate gradient method on an R83S system.
//
// Discussion:
//
// The R83S storage format is used for a tridiagonal scalar matrix.
// The vector A(3) contains the subdiagonal, diagonal, and superdiagonal
// values that occur on every row.
//
// The matrix A must be a positive definite symmetric band matrix.
//
// The method is designed to reach the solution after N computational
// steps. However, roundoff may introduce unacceptably large errors for
// some problems. In such a case, calling the routine again, using
// the computed solution as the new starting estimate, should improve
// the results.
//
// Example:
//
// Here is how an R83S matrix of order 5, stored as (A1,A2,A3), would
// be interpreted:
//
// A2 A3 0 0 0
// A1 A2 A3 0 0
// 0 A1 A2 A3 0
// 0 0 A1 A2 A3
// 0 0 0 A1 A2
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 09 July 2014
//
// Author:
//
// John Burkardt
//
// Reference:
//
// Frank Beckman,
// The Solution of Linear Equations by the Conjugate Gradient Method,
// in Mathematical Methods for Digital Computers,
// edited by John Ralston, Herbert Wilf,
// Wiley, 1967,
// ISBN: 0471706892,
// LC: QA76.5.R3.
//
// Parameters: