Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 scilab 进行一些简单的模拟。结果会出现一些情节和图表。捕获这些输出并将它们发布到 pdf 或 ps 文件中的最简单方法是什么?
希望很简单,我可以将样板代码包含到我的 scilab 脚本本身中?
您可以使用xs2ps、xs2eps或xs2pdf。例如:
scf(0); x=0:0.01:10; for i=1:5 y=sin(i*x); plot2d(x,y); filename=sprintf('d:\foo_%d.ps',i); xs2ps(0,filename); clf(); end