﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2549	Add gnuplot support to save plots in more formats	Martin Sjölund	somebody	"Add gnuplot support to save plots in more formats. Something like:
{{{#!mo
function gnuplot
  input VariableNames vars;
  input String inputFile := ""<default>"" ""last generated simulation results"";
  input String outputFile := ""output.csv"";
  input String inputSeparator := "","";
  input String term := ""pdf"";
  // The usual plot arguments as well...
  output Boolean;
end gnuplot;
}}}

Limitations: gnuplot only supports .csv; not .mat or .plt. More recent versions have better support for headers in the csv-file, but not good enough to conform to the full csv format. You need to know the index of each variable for it to work.

Rationale: We use gnuplot to produce nice-looking plots for papers anyway. Why not integrate it into omc even if it requires output in csv format? Gnuplot supports many output formats too (svg, pdf, eps, wmf)."	enhancement	new	high	Future	Interactive Environment	trunk			Bernt.Lie@…
