使用c#在GNU PLOT中绘制图形

本文关键字:绘制 图形 PLOT GNU 使用 | 更新日期: 2023-09-27 18:17:45

我有一个数据文件insert.dat

内容如下:

1000    0.002322044 0.00291182
5000    0.000103257 0.000458963
10000   2.50E-05    0.000172019
20000   6.18E-06    6.03E-05
40000   2.51E-06    2.65E-05
60000   1.65E-06    1.71E-05
80000   1.21E-06    1.23E-05
100000  1.01E-06    9.97E-06

当我打开gnuplot.exe并使用行输入plot insert.dat时,我得到了正确的输出,但是当我编写c#代码时,如下所示:

private  void GNUPlot()
{
    string pgm = @"E:'gnuplot'bin'gnuplot.exe";
    Process extPro = new Process();
    extPro.StartInfo.FileName = pgm;
    extPro.StartInfo.UseShellExecute = false;
    extPro.StartInfo.Standardization = true;
    extPro.Start();
    StreamWriter gnupStWr = extPro.StandardInput;
    gnupStWr.WriteLine("plot '"insert.dat'" with lines ");
    gnupStWr.Flush();
}

我得到以下警告:

warning: Skipping unreadable file "insert.dat"

替换

gnupStWr.WriteLine("plot '"insert.dat'" with lines ");

gnupStWr.WriteLine("plot sin(x) ");

我得到所需的Sin(x)图输出。

insert.datgnuplot的当前目录下。我想绘制insert.dat文件数据

使用c#在GNU PLOT中绘制图形

问题似乎是gnuplot无法找到所请求的文件。进程的工作目录没有设置为gnuplot目录,而可能设置为调用gnuplot的应用程序的目录。

EDIT尝试在extPro.Start()命令之前的某个地方添加以下两行:

extPro.StartInfo.WorkingDirectory = @"E:'gnuplot'bin";

Environment.CurrentDirectory = @"E:'gnuplot'bin";

如果这不起作用,可能是因为您的应用程序没有对该目录的读访问权限。请尝试将insert.dat文件放在任何客户端应用程序都可以访问的目录中。

顺便说一句,我也不认识你正在使用的Standardization属性?这行应该是:

extPro.StartInfo.RedirectStandardInput = true;