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
    for(i=0; i<=dim; i++) 
    {
        for(j=0; j<=dim; j++)
        {
            fscanf(input, "%f", &matrix[i][j]);
        }
    }

它必须是i < dimj < dim

数组的索引从 0 开始,而不是 1。

于 2013-11-03T05:04:21.280 回答