|
From: <HBB...@t-...> - 2007-09-18 20:26:11
|
Utayba Mohammad wrote: > I am trying to plot multiple data files to a cgm file so that I can > include it in a MS document. In gnuplot terminal I type: > > set terminal cgm > set output 'output_file_name.cgm' > plot "first_data_file" with lines > replot "second_data_file" with lines Why? Why is it that every new user of gnuplot falls into this trap of thinking that "replot" is the only way of plotting two multiple files in a single diagram? Is it really so hard to find out out from "help plot" that the following should work: plot "first_data_file" with lines, "second_data_file" with lines |