【问题标题】:call gnu plot from c++ without user input在没有用户输入的情况下从 C++ 调用 gnu plot
【发布时间】:2018-06-16 09:16:52
【问题描述】:

我在网上找到了这段代码。它使用 gnuplot 从 C++ 中生成的数据绘制绘图。但是它需要用户输入,并且没有这些行就无法工作

      printf("press enter to continue...");        
      getchar();

错误信息显示

     line 0: warning: Skipping unreadable file "tempData"
     line 0: No data in plot

有人知道解决这个问题的方法吗?我想在循环中使用这段代码,而不是每次都被调用输入......

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void plotResults(double* xData, double* yData, int dataSize);
int main() {
int i = 0;
int nIntervals = 100;
double intervalSize = 1.0;
double stepSize = intervalSize/nIntervals;
double* xData = (double*) malloc((nIntervals+1)*sizeof(double));
double* yData = (double*) malloc((nIntervals+1)*sizeof(double));
xData[0] = 0.0;
double x0 = 0.0;
for (i = 0; i < nIntervals; i++) {
    x0 = xData[i];
    xData[i+1] = x0 + stepSize;
}
for (i = 0; i <= nIntervals; i++) {
    x0 = xData[i];
  yData[i] = sin(x0)*cos(10*x0);
}
plotResults(xData,yData,nIntervals);
return 0;
}
void plotResults(double* xData, double* yData, int dataSize) {
FILE *gnuplotPipe,*tempDataFile;
char *tempDataFileName;
double x,y;
int i;
tempDataFileName = "tempData";
gnuplotPipe = popen("gnuplot","w");
if (gnuplotPipe) {
  fprintf(gnuplotPipe,"plot \"%s\" with lines\n",tempDataFileName);
  fflush(gnuplotPipe);
  tempDataFile = fopen(tempDataFileName,"w");
  for (i=0; i <= dataSize; i++) {
      x = xData[i];
      y = yData[i];            
          fprintf(tempDataFile,"%lf %lf\n",x,y);        
      }        
      fclose(tempDataFile);        
      printf("press enter to continue...");        
      getchar();        
      remove(tempDataFileName);        
      fprintf(gnuplotPipe,"exit \n"); 
      pclose(gnuplotPipe);   
  } else {        
      printf("gnuplot not found...");    
  }
} 

【问题讨论】:

  • 我认为你需要删除remove(tempDataFileName)这一行
  • 谢谢!那行得通。

标签: c++ gnuplot popen


【解决方案1】:

我认为实际的问题是您提前删除了临时文件。我会将代码重组为:

if (gnuplotPipe) 
{
    // Create the temp file
    tempDataFile = fopen(tempDataFileName,"w");
    for (i=0; i <= dataSize; i++) 
    {
        x = xData[i];
        y = yData[i];            
        fprintf(tempDataFile,"%lf %lf\n",x,y);        
    }        
    fclose(tempDataFile);  

    // Send it to gnuplot
    fprintf(gnuplotPipe,"plot \"%s\" with lines\n",tempDataFileName);
    fflush(gnuplotPipe);
    fprintf(gnuplotPipe,"exit \n"); 
    pclose(gnuplotPipe); 

    // Clean up the temp file  
    remove(tempDataFileName);        
} 

那么您的系统上不会有很多临时文件。

另一件好事是让 gnuplot 持久化,这样您就可以在管道关闭后看到绘图,只需在打开管道时添加 -p 标志

gnuplotPipe = popen("gnuplot -p","w");

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-04-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-05-20
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多