C語言產生正弦波,將資料寫入檔案中並用gnuplot作圖

LiuHaoNan~發表於2019-03-14

第一步:用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
結果:在這裡插入圖片描述

相關文章