var fDesc=new Array();
fDesc[0] = "Quantum XL software is an add-in for Excel delivering high-speed Monte Carlo simulation modeling and analysis in Excel. Quantum XL supports many advanced features including Optimization, Custom Distributions, Latitude Plots, Percent Contribution Analysis, and much more.
Main Features:
- Compare Quantum XL with Crystal Ball
-Monte Carlo Simulations
- Optimization
- Distribution Support
- Input/Output Manager
- Define Multiple Inputs/Outputs Simultaneously
- Percent Contribution and Tolerance Allocation Tables
- Latitude Plots
- Merge Design Sheets
- Surface, Contour, and Interaction Plots
- Design Scorecard
- Sampling Matrices
- Nearly Orthogonal Latin Hypercube Sampling
- SnapSheets Integration";
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 = '';
}
}