そこで、ファイルから行列を取得し、それを配列に入れ、その行列式を計算するコードをいくつか書きました。ただし、実行すると、配列に値が設定されていないように見え、プログラムは 0 行列を返すため、行列式 = 0 になります。ファイルプロセスからの読み取り全体を処理します。
このファイルは単なる .data ファイルであり、行列要素がスペースで区切られた列に格納されています。つまり、次のようになります。
1.7 1.2 0.5
0.0 -3.2 1.4
3.0 4.0 5.0
これが(私が思うに)コードの関連セクションですが、役立つ場合はすべてを投稿できます。
int main(int argc, char* argv[])
{
FILE *input;
int record, i, j;
int curr_col;
const int dim = DIMENSION;
double entries[dim][dim];
double tmp, determinant;
const char inp_fn[]="matrix.data";
/* Open file */
input = fopen(inp_fn, "r");
/* Check the pointer to file are not NULL */
if(input != (FILE*) NULL)
{
for(j=0; j<dim; j++, fopen(inp_fn, "r"))
{
record = 0; i = 0;
/* Read in records one by one and check the return value of fscanf */
while(fscanf(input,"%lf",&tmp) == 1)
{
curr_col = (record % dim);
if(curr_col==j)
{
/* Copy data points to the array */
entries[i][j] = (double)(tmp);
i++;
}
record++;
}
fclose(input);
}
}
else
printf("*** Could not open input or output file! ***\n");
/* Calculates determinant */
determinant = det(dim, entries);
printf("\nA = \n");
for(i=0; i<dim; i++)
{
for(j=0; j<dim; j++)
{
printf("%.1lf ", entries[i][j]);
}
printf("\n");
}
printf("\n");
printf("det(A) = %.3lf\n", determinant);
}
「入力または出力ファイルを開けませんでした!」というメッセージが表示されます。プログラムを実行すると、エラーと空の行列が表示されます...助けて!?