CSV ファイルを C の 2D 配列に解析しようとしています。次の構造の行列を作成したいと考えています。
typedef struct {
int row;
int col;
float **arr;
int numElements;
} Matrix;
私が使用している関数は、動的に割り当てられた float の 2D 配列を取り、返されます。fgets を使用して値を読み取り、strtok を使用してカンマ間の各値をトークン化し、strtof を使用して返された文字列を変換しています。
まず、2D 配列を動的に作成し、それらを関数に渡して値を入力します。
RMatrix->arr = make2DArray(RMatrix->row, RMatrix->col);
VMatrix->arr = make2DArray(VMatrix->row, VMatrix->col);
printf("RMatrix->arr : %p \n", RMatrix->arr);
printf("VMatrix->arr : %p \n", VMatrix->arr);
parseCSV(fpRMatrix, RMatrix->arr, RMatrix->row, RMatrix->col, &(RMatrix->numElements), INPUT_LENGTH);
printf("RMatrix parsed\n");
parseCSV(fpVMatrix, VMatrix->arr, VMatrix->row, VMatrix->col, &(VMatrix->numElements), INPUT_LENGTH);
printf("VMatrix parsed\n");
以下は機能です:
void parseCSV(FILE *fp, float **output, int row, int col, int *numElements ,int inputLength)
{
char *buffer;
int rowArr = 0;
printf("Output : %p \n", output);
buffer = (char*) malloc(inputLength * sizeof(char));
while(fgets(buffer, inputLength, fp)) {
char *p =strtok(buffer,",");
int colArr = 0;
float check = 0;
while(p)
{
printf("p now : %s \n", p);
check = strtof(p, (char**) NULL);
printf("check now : %f \n", check);
output[rowArr][colArr] = strtof(p, (char**) NULL);
*numElements += 1;
colArr++;
p = strtok('\0',",");
printf("output[%d][%d] : %f ", rowArr, colArr, output[rowArr][colArr]);
}
printf("\n");
rowArr++;
}
printf("numElements in the end : %d\n", *numElements);
free(buffer);
}
float **make2DArray(int row, int col)
{
float** arr;
float* temp;
arr = (float**)malloc(row * sizeof(float*));
temp = (float*)malloc(row * col * sizeof(float));
for (int i = 0; i < row; i++) {
arr[i] = temp + (i * row);
}
return arr;
}
出力 :
Name : RMatrix
NumElements : 0
Rows : 2
Cols : 4
Name : VMatrix
NumElements : 0
Rows : 2
Cols : 4
RMatrix->arr : 0x11684d0
VMatrix->arr : 0x1168520
Output : 0x11684d0
p now : 1
check now : 1.000000
output[0][1] : 0.000000 p now : 2
check now : 2.000000
output[0][2] : 0.000000 p now : 3
check now : 3.000000
output[0][3] : 0.000000 p now : 4
check now : 4.000000
output[0][4] : 0.000000
p now : 5
check now : 5.000000
output[1][1] : 4.000000 p now : 6
check now : 6.000000
output[1][2] : 0.000000 p now : 7
check now : 7.000000
output[1][3] : 0.000000 p now : 8
check now : 8.000000
output[1][4] : 0.000000
numElements in the end : 8
RMatrix parsed
Output : 0x1168520
p now : 1
check now : 1.000000
output[0][1] : 0.000000 p now : 2
check now : 2.000000
output[0][2] : 0.000000 p now : 3
check now : 3.000000
output[0][3] : 0.000000 p now : 4
check now : 4.000000
output[0][4] : 0.000000
p now : 5
check now : 5.000000
output[1][1] : 4.000000 p now : 6
check now : 6.000000
output[1][2] : 0.000000 p now : 7
check now : 7.000000
output[1][3] : 0.000000 p now : 8
check now : 8.000000
output[1][4] : 0.000000
numElements in the end : 8
VMatrix parsed
ご覧のとおり、strtof 呼び出しは成功しましたが (p および check 変数に反映されています)、配列への代入は成功していません。
私は C を 1 か月しか使用していませんが、C に魅了されています。しかし、もっと学ぶ必要があることは明らかです。私は本当にあなたの助けに感謝します:)