- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我之前写过类似的问题。但是,我有一个错误现在无法解决。
我正在尝试用 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
而不是 strcpy
将 char *
值转换为 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/
我是一名优秀的程序员,十分优秀!