我使用gcc作爲編譯器,gnuplot-iostream.h作爲流來結合C++代碼和gnuplot特性。如何在調用gnuplot後繼續執行C++代碼?
我在做什麼:
我儘量讓通過gnuplot的一個合適的數據,並從中提取用於進一步處理產生fit.log文件最終擬合參數。
什麼問題:
當執行這樣
std::cout << "Starting to fit" << std::endl;
if (bStartFit == true)
{
// gp << doing stuf here;
std::cout << "Test end" << std::endl;
}
std::cout << "Fit is done" << std::endl;
代碼的輸出將是:
Starting to fit
Fit is done
Test end
//gnuplot stuff
我的問題是:如何強制代碼完全執行gnuplot的東西當需要時,以及繼續使用C++代碼之後。例如:
- 寫入介紹消息;
- 繪製sin(x)函數(作爲快速示例);
- 等到gnuplot關閉;
- 寫出退出消息或做gnuplot完成之後的任何事情。
謝謝你, P
編輯:
std::string filename = "fit.log";
if (bStartFit == true)
{
// Using Gnuplot for the data fit (command are parsed as the strings):
// 1. define the fit function.
gp << "f(x) = imfpZP * x**(-b) + c * x**(d) + g * x**(h) \n";
// 2. fit parameters first assumption.
gp << "b = 1.1; c = 0.5; d = 1.0; g = 2.0; h = 0.1 \n";
// 3. fit range.
gp << "fit [50:10000] f(x) 'agn.iimfp' via b,c,d,g,h \n";
// 4. set the logarithmic scale.
gp << "set logscale \n";
// 5. plot the fitted data.
gp << "plot 'agn.iimfp' w l lw 2 tit 'orig', f(x) w l lw 2 tit 'fit' \n";
std::cout << "Fit was successful" << std::endl;
}
// Opening the generated fit.log file to store the fit parameters:
std::ifstream inFIT(filename.c_str());
if (inFIT.is_open())
{
std::cout << "FIT log is opened" << std::endl;
std::string line;
int lineCounter = 0;
while (std::getline(inFIT, line))
{
lineCounter++;
}
std::cout << "Total lines: " << lineCounter << std::endl;
// Getting the five lines with fit parameters from the fit.log:
std::fstream& GoToLine(std::fstream& file, unsigned int lineNumber);
std::fstream file(filename.c_str());
GoToLine(file, lineCounter - 15);
std::string b_Line;
std::getline(file, b_Line);
std::cout << b_Line << std::endl;
std::istringstream sb(b_Line);
std::string tempStr;
char tempChar;
sb >> tempStr >> tempChar >> b
// similar code to get another 4 lines
;
你是什麼意思_「gnuplot的東西」_ ??你怎麼稱呼gnuplot? –
我不確定使用* gnuplot iostream *是否符合您的需求。 –
作者:gnuplot stuff我的意思是gnuplot標題,如果我使用「fit」命令,我也會在這裏得到一個合適的迭代,並且情節本身將是最後一件事情。 –