質問編集履歴
1
情報の補充
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
型名が必要
|
1
|
+
型名が必要(C言語:分割コンパイル)
|
body
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
初歩的なミスが出てきて、コンパイルできないので助けてください!
|
3
3
|
|
4
4
|
```C
|
5
|
+
/* dft.h */
|
5
6
|
#include<stdio.h>
|
6
7
|
#include<math.h>
|
7
8
|
#include"dft.h"
|
@@ -72,7 +73,7 @@
|
|
72
73
|
void clear_array(double x[], int n);
|
73
74
|
void square_wave(double x[], int n);
|
74
75
|
void sin_waves(double x[], int n, double f1, double f2, double f3);
|
75
|
-
void dft(const double in[], Complex out[], const int N);
|
76
|
+
void dft(const double in[], Complex out[], const int N); //問題の4行目です。
|
76
77
|
|
77
78
|
```
|
78
79
|
|