- Joined
- 5/8/06
- Messages
- 80
- Points
- 16
I tried to write a file for 1e6 by 1e6 and it literally crashed, giving me the message below. How should I code so that I could begin to write and compute my matrices? I am looking along the lines of computing values larger than 1e6.
Thanks.
Thanks.

Code:
int main()
{
int i, j, nmat;
double *b, **a4;
nmat = 1000000;
Init_Matrix(a4, nmat);
Init_Vector (b, nmat);
for (i = 0; i<nmat; ++i) {
if (i%2 == 0) a4[i][i] = 4;
if (i%2 == 1) a4[i][i] = 4;
if ((i-1)%10 != 0) a4[i][i-1] = -1;
if (i%10 != 0) a4[i][i+1] = -1;
}
for (i = 0; i<nmat; ++i) {
if (i%5 == 0) b[i] = 2;
else b[i] = 1;
}
writeToCsvFile_matrix("a.dat", a4, nmat);
return 0;