int main()
{
int i,method;
system("cls");
PI=atan(1)*4;
printf("Please input the size of x:\n");
/*输入序列的长度*/
scanf("%d",&size_x);
printf("Please input the data in x[N]:(such as:5 6)\n");
/*输入序列对应的值*/
for(i=0;i<size_x;i++)
scanf("%lf %lf",&x[i].real,&x[i].img);
initW();
/*选择FFT或逆FFT运算*/
printf("Use FFT(0) or IFFT(1)?\n");
scanf("%d",&method);
if(method==0)
fft();
else
ifft();
output();
return 0;
}
求大神告诉我一下这段程序是怎么执行, scanf("%lf %lf",&x[i].real,&x[i].img);这句话不知道该怎么输入变量
{
int i,method;
system("cls");
PI=atan(1)*4;
printf("Please input the size of x:\n");
/*输入序列的长度*/
scanf("%d",&size_x);
printf("Please input the data in x[N]:(such as:5 6)\n");
/*输入序列对应的值*/
for(i=0;i<size_x;i++)
scanf("%lf %lf",&x[i].real,&x[i].img);
initW();
/*选择FFT或逆FFT运算*/
printf("Use FFT(0) or IFFT(1)?\n");
scanf("%d",&method);
if(method==0)
fft();
else
ifft();
output();
return 0;
}
求大神告诉我一下这段程序是怎么执行, scanf("%lf %lf",&x[i].real,&x[i].img);这句话不知道该怎么输入变量