0
我努力學習的gnuplot與繪製海槽例如C語言編程,但下面的消息不斷重複,當我嘗試繪圖: 錯誤,而試圖繪製C文件與gnuplot的
"Warning: Skipping data file with no valid points"
"x rang is invalid"
我不知道這是什麼意思。我編譯了這個文件,它沒有給我任何錯誤,這是來自一個已經制作的例子。爲什麼我不能陰謀?
的代碼如下:
#include <stdio.h>
#include <math.h>
int main(void)
{
double t = 0.0, x, y;
FILE *fp;
fp = fopen("data6-7.txt","w");
do
{
x = cos(2*M_PI*t);
y = sin(2*M_PI*t);
fprintf(fp, "%f %f %f\n", t, x, y);
t = t + 0.01;
} while (t <= 1.0);
fclose(fp);
return 0;
}
你試圖繪製什麼c文件,爲什麼你的代碼中有無效字符?你在哪裏調用'gnuplot'? –
@iharob:這是使用shift-jis編碼時的反斜線字符 – 6502
@iharob我不知道,我正在使用一個老師給我的例子,但它不工作。 – Xmayro