var fDesc=new Array();
fDesc[0] = "KyPlot offers you an integrated environment for data analysis and visualization. In KyPlot you can analyze data with a broad range of computing and statistical methods on a spreadsheet interface, and visualize the results as versatile graphs.
1. Spread Window
A spread window contains Excel-compatible spreadsheets, supporting calculation with cell formulae. KyPlot provides a wide range of computing methods such as mathematical optimization, spectral, time-series and wavelet analysis. It also offers a variety of statistical procedures including parametric and nonparametric tests and multivariate analysis.
2. Figure Window
You can create graphs and draw schemes in figure pages in a figure window. KyPlot provides versatile options to customize every aspect of a graph and you can easily create publication-ready, high-quality graphs. It also offers many fitting methods including nonlinear fitting, interpolation and smoothing.
In version 3, multiple pages can be created in a figure window and you can perform a screen show of the pages.";
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 = '';
}
}