0

好的,所以我的任务是创建一个程序,它从文件中读取一个未知的 nxn 矩阵,然后以某种方式计算它的行​​列式。除了从文件中获取数字后数字似乎混乱之外,我已经完成了很多工作。

如果你只看我的代码可能会更容易,这是在阅读矩阵之后的部分,正如我所说的值都是混乱的。这不是 i <= dim 因为 dim 从 0 开始计数,所以它应该运行正确的次数。

#include <stdio.h>
#include <stdlib.h>
#include <math.h>


int main(int argc, char* argv[])
{
FILE       *input;
int     i, j, temp; 
int        dim=0;
double     det;
const char inp_fn[]="matrix.dat";

/*Open File*/
input = fopen(inp_fn, "r");

/*Find the number of lines and hence dimensions*/
while (EOF != (temp = fgetc(input)))
{
    if (temp=='\n')
    {
    ++dim;
    }
}

/*Reset pointer to beginning of file and float the matrix*/
fseek(input, 0, SEEK_SET);
float      matrix[dim][dim];

/*Check file isn't NULL, if good fill the matrix with the values from the file*/
if( (input != (FILE*) NULL) )
{
    for(i=0; i<=dim; i++)
    {
        for(j=0; j<=dim; j++)
        {
            fscanf(input, "%f", &matrix[i][j]);
        }
    }
    fclose(input);
}
else
    {
    printf("Could not open file!\n");
    }

所以,如果你们能看到任何东西,请告诉我,我对此很陌生,所以我可能遗漏了一些明显的东西,谢谢。

4

1 回答 1

2

您的循环与数组的尺寸不匹配。

要么你的文件在最后一行之后没有'\n',然后你有矩阵(dim+1)*(dim+1)并且应该将它定义为float matrix[dim+1][dim+1],或者文件在最后一行之后有'\n',然后你应该在循环中使用i < dim和。j < dim

于 2013-11-03T13:25:22.673 回答