我有一个能够生成 2 个数组的函数,一个在索引“i”为偶数时,一个在索引“i”为奇数时,所以我最终得到了两个数组。偶数“i”数组称为 W_e,由 N 个元素组成,奇数“i”数组称为 W_o,也由 N 个元素组成。
我现在需要将这两个数组合并到另一个数组 Wn(具有 2*N 个元素)中,使其看起来像 Wn=[W_e[0],W_o[0],W_e[1],W_o[1],。 ..,W_e[N-1],W_o[N-1]] 但我不知道该怎么做。我尝试使用嵌套循环,但没有奏效。根据我的计算,数组 W_e 和 W_o 是正确生成的,我只是无法将这些条目组合成一个数组。
这就是我到目前为止所拥有的。除了调用给我带来麻烦的函数“double *MakeWpowers(int N);”之外,我在主函数中没有做任何事情。请记住,这适用于 N>2,我还没有处理过 N=1 或 N=2。
任何帮助将不胜感激。谢谢!!
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <complex.h>
#define pi 4*atan(1)
double *MakeWpowers(int N);
void print_vector(double *x,int N);
double *make_vector(double *x,int N);
int main(void)
{ int N;
double *Wn;
printf("\n Please enter the size of the NxN matrix:\n");
scanf("%d",&N);
Wn=MakeWpowers(N);
//print_vector(Wn,N);
free(Wn);
return(0);
}
double *MakeWpowers(int N)
{
double *Wn,*W_e,*W_o;
int i,j;
Wn=make_vector(Wn, 2*N);
W_e=make_vector(W_e, N);
W_o=make_vector(W_o, N);
for(i=0;i<=N-1;i++)
{
if(i%2==0)
{
W_e[i]=cos((2*i*pi)/N);
}
else
{
W_o[i]=sin((2*i*pi)/N);
}
}
printf("\nThis is the even vector W_e:\n");
print_vector(W_e, N);
printf("\nThis is the odd vector W_o:\n");
print_vector(W_o, N);
for(j=0;j<2*N;j++)
{
if(j%2==0)
{Wn[j]=W_e[i];}
//++i;}
else
{Wn[j]=W_o[i];}
//++i;}
printf("\nthis is Wn:\n\n");
print_vector(Wn, 2*N);
//Wn[j]=W_o[i];
//j++;
}
return(Wn);
}
void print_vector(double *x,int N)
{
int i;
for (i=0; i<N; i++)
{
printf ("%9.4f \n", x[i]);
}
printf("\n");
}
double *make_vector(double *x,int N)
{ int i;
double xi;
x=(double *)malloc((N)*sizeof(double));
for(i=0;i<N;i++)
{
x[i]=(double)xi;
}
return(x);
}