
5 Feb
2009
5 Feb
'09
5:25 a.m.
Well not directly - *Users of data*, including time_series data may like
to
be able to *plot* their data.
If data is in a STL container convertible to double, say
multimap <double, double> values;
Then something like
svg_1d_plot my_plot;
my_plot.title("My Stuff").autoscale(true);
myplot.plot(values, "My series");
myplot.write("myplot.svg");
should give you a neatish graph.
Sounds interesting. B/Rgds Max