gpt4 book ai didi

c - 如何在 C 中向 double 组添加值

转载 作者:行者123 更新时间:2023-11-30 17:18:17 27 4
gpt4 key购买 nike

我之前写过类似的问题。但是,我有一个错误现在无法解决。

我正在尝试用 C 编写代码,这样如果我有一个这样的文件 reg2.dat:

5.1 3.5 1.4
4.9 3 1.4
4.7 3.2 1.3
4.6 3.1 1.5
5 3.6 1.4

然后,我可以 1) 确定行数(在本例中为 5),2) 确定列数(在本例中为 3),3) 将所有 15 个值写入 double 组 X 中。

我的代码致力于前两个目标。但是,我无法让 double 组 X 包含值 (5.1, 3.5, 1.4, 4.9, 3, 1.4, 4.7, 3.2, 1.3, 4.6, 3.1, 1.5, 5, 3.6, 1.4)。我已经在这个问题上坚持了一个星期,并得到了建议,但不幸的是仍然需要更直接的帮助:(

下面是我完整且有序的代码:

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

int getCol(char *myStr);
int getRow(char *fileName);
int assignX(int nCol, int nRow, double *X, char *fileName);

int main(){
FILE *f;
char myStr[1000];
int strL;
int nCol;
int nRow;
char *fileName = "reg2.dat";
double *X;

f = fopen(fileName, "r");
if (f == NULL) perror ("Error opening file");
else {
if (fgets(myStr, 1000, f) != NULL )
puts(myStr);
fclose(f);
}

strL = strlen(myStr);
nCol = getCol(myStr);
nRow = getRow(fileName);
printf("Sample size and number of predictors are %d and %d respectively.\n", nRow, nCol-1);

X = (double *) malloc(sizeof(double) * (nRow* nCol));
assignX(int nCol, int nRow, double *X, char *fileName);
return 0;
}

不起作用的辅助函数如下...

int assignX(int nCol, int nRow, double *X, char *fileName){
int i=0;
int j;
char string[1000];
FILE *f;
f = fopen(fileName, "r");

while(fgets(string, sizeof string, f) != NULL){
for (j=0; j<nCol; j++){
strcpy(X[i], strtok(string, " "));
i++;
}
}

for (i=0;i<(nRow*nCol);i++){
printf("%d\n", X[i]);
}
return 0;
}

有效的辅助函数如下...

int getCol(char *myStr){
int length,i,count=0;
char prev;
length=strlen(myStr);
if(length > 0){
prev = myStr[0];
}
for(i=0; i<=length; i++){
if(myStr[i]==' ' && prev != ' '){
count++;
}
prev = myStr[i];
}
if(count > 0 && myStr[i] != ' '){
count++;
}
return count;
}

int getRow(char *fileName){
char ch;
int count=0;
FILE *f;
f = fopen(fileName, "r");

while(!feof(f)){
ch = fgetc(f);
if(ch == '\n')
{
count++;
}
}
fclose(f);
return count;
}

这是我运行时的错误:

gcc -ansi -pedantic readReg.c -o readReg -llapack -lblas -lgfortran

错误:

readReg.c: In function ‘main’:
readReg.c:40: error: expected expression before ‘int’
readReg.c: In function ‘assignX’:
readReg.c:55: error: incompatible type for argument 1 of ‘strcpy’
/usr/include/string.h:128: note: expected ‘char * __restrict__’ but argument is of type ‘double’

最佳答案

您是否尝试使用 atof 而不是 strcpychar * 值转换为 double 值?

我的意思是改变这个
strcpy(X[i], strtok(字符串, ""));

到此
X[i] = atof(strtok(string, ""));

这里有一个例子
http://www.tutorialspoint.com/c_standard_library/c_function_atof.htm

更新:

这里,AssignX 函数正在工作(文件 reg2.dat 中的最后一行必须有一个 Enter (\n),如果最后一行没有输入程序会崩溃,因为行号将为 4 而不是 5。我建议您检测这种情况以避免程序崩溃:D)

int assignX(int nCol, int nRow, double *X, char *fileName){
int i=0;
int j;
char string[1000];
char* data = NULL;
FILE *f;
f = fopen(fileName, "r");

while(fgets(string, sizeof(string), f) != NULL){
data = strtok(string, " ");
for (j=0; NULL != data && j<nCol; j++){
if (data[strlen(data) - 1] == '\n')
data[strlen(data) - 1] = '\0';
X[i] = atof(data);
data = strtok(NULL, " ");
i++;
}
}

for (i=0;i<(nRow*nCol);i++){
printf("%f\n", X[i]);
}
return 0;
}

希望这有帮助

关于c - 如何在 C 中向 double 组添加值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29220546/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com