本文整理汇总了C++中TMatrixD::Draw方法的典型用法代码示例。如果您正苦于以下问题:C++ TMatrixD::Draw方法的具体用法?C++ TMatrixD::Draw怎么用?C++ TMatrixD::Draw使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TMatrixD
的用法示例。
在下文中一共展示了TMatrixD::Draw方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: plot_covariance
void plot_covariance(TMatrixD cov, string path, string prefix, string name, string legend_position = "top_left", bool detail = false)
{
//declaring the canvas
if (detail) { cout << "Ploting " << name << endl; }
TCanvas *c1 = new TCanvas("c1","Canvas",0,29,1450,870);
gStyle->SetOptStat(0);
gStyle->SetOptTitle(kFALSE);
gStyle->SetPalette(1);
gStyle->SetPaintTextFormat("4.2g");
gPad->SetFillColor(0);
gPad->SetBorderMode(0);
gPad->SetBorderSize(2);
gPad->SetLeftMargin(0.10);
gPad->SetRightMargin(0.10);
gPad->SetTopMargin(0.01);
gPad->SetFrameBorderMode(0);
gPad->SetLogz();
cov.Draw("colz");
cov.Draw("text same");
//setting the output files
string fileout = prefix + name;
string out_png = path + "png/" + fileout + ".png";
string out_c = path + "c/" + fileout + ".C";
string out_eps = path + "eps/" + fileout + ".eps";
//save the file and close the canvas
c1->Print( out_png.c_str() );
c1->Print( out_c.c_str() );
c1->Print( out_eps.c_str() );
c1->Close();
}