|
From: <HBB...@t-...> - 2007-05-24 17:39:17
|
Lee Duke wrote: > I'm trying to access gnuplot from within C++. I'd like to be able to > pass standard commands to the gnuplot interface and get plots that I can > either view, save to a file, or print. Is there a reasonably easy and > painless way to do this in some platform-independent way? There cannot be a truly platform-independent way of doing that, because platform dependence sets in before you can even run an external program, much less redirect its inputs or outputs. As portable as it gets is what N. Devilla's C interfacing library supports. That should be usable from C++, too. |