C语言产生正弦波,将数据写入文件中并用gnuplot作图

时间:2024-03-16 17:40:01

第一步:用C语言生成数据,并将数据写入"zhengxian.dat"文件中

#include<stdio.h> 
#include<math.h> 
#define pi 3.14
int main() 
{ 
    FILE *fp=fopen("zhengxian.dat","wb");
    double t,s;
    int i;
    for (i=0; i<8000; i++)//4秒,产生更多数据 
    { 
        t=i/2000.0; 
        s=sin(2*pi*10*t);//设定频率为10Hz
        
    fprintf(fp,"%lf %lf\n",t,s);

}
fclose(fp);
return 0;

}
tcc编译生成zhengxian.exe和zhengxian.dat文件,notepad++打开zhengxian.dat文件,共8000行数据
第二步:gnuplot作图,在命令行输入plot “zhengxian.dat” wl
结果:C语言产生正弦波,将数据写入文件中并用gnuplot作图