バンド行列を格納する方法を理解しようとしていたのですが、「C++ and Object Oriented Numeric Computing」という本で例を見つけましたが、行bda[i] += P;の目的がわかりません。これにより、バンドマトリックスを印刷しようとすると問題が発生します。ここにあります:
int N = 5; //Matrix of NxN
int P = 1; //Left bandwidth
int R = 2; //Right bandwidth
//Matrix A
double A[5][5] = { { 1, 6, 10, 0, 0 },
{ 13, 2, 0, 11, 0 },
{ 0, 14, 3, 8, 12 },
{ 0, 0, 0, 4, 9 },
{ 0, 0, 0, 16, 5 } };
//Allocate memory for rows
double** bda = new double*[N];
for (int i = 0; i < N; i++) {
bda[i] = new double[P + R + 1]; //Allocate memory for cols
bda[i] += P; //What's the purpose of this?
}