var fDesc=new Array(); fDesc[0] = "GUIPlot extracts numerical data from text files and produces X-Y plots and histograms with simple statistics.
GUIPlot is oriented toward quick, easy analysis of numerical data embedded in text files. The plot below was created by dragging and dropping a file on GUIPlot, typing the 2-character formula for the black lines ("C5") and another for the red lines ("C8"). The data was immediately plotted."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }