From: Petr M. <mi...@ph...> - 2004-02-20 14:05:44
|
> But, there is always a but. We need to make duplicate copies of > datasets, which are plotted in Gnuplot, since Gnuplot doesnt send it's > dataset of visualisation back. > This is the curve/surface data, such as X, Y and Z. These datasets are send to gnuplot via data files, so you can use those (= their filenames), so you don't have to keep the data. > Can Gnuplot do this today, and if it can how? I am unable to find any > documentation about it. > I am reading source-code, and tries to find out where to attack this > problem..... Gnuplot does not store data as double *x, *y; but as struct gnuplot's_point_structure *pt (for 3d organized in struct gnuplot's_iso_lines). In principle, for future, gnuplot could be implemented for things like reading from binary files like "/sharedmem/DataFromOctave" instead from ascii data files (binary support is already in the "with image" patch by Daniel). --- PM |