标题:PDL-Graphics-Gnuplot:PDL-Graphics-Gnuplot的只读发布历史

这是一个基于Gnuplot的PDL绘图工具。该存储库保存了CPAN上PDL::Graphics::Gnuplot模块的历史记录,用户可以通过CPAN安装该模块。

示例代码:

pdl>use PDL::Graphics::Gnuplot;
pdl>$x=sequence(101)-50;
pdl>gplot($x**2);
pdl>gplot($x**2,{xr=>[0,50]});
pdl>gplot({title=>'Parabola with error bars'},with=>'xyerrorbars',legend=>'Parabola',$x**2*10,abs($x)/10);