var fDesc=new Array();
fDesc[0] = "Multiprecision Computing Toolbox is the MATLAB extension for computing with arbitrary precision.
Main features:
- Real and complex numbers, full and sparse matrices, multidimensional arrays.
- Elementary mathematical functions and constants.
- Solvers for system of linear equations (including direct and iterative sparse solvers).
- Matrix analysis functions and factorizations.
- Eigenvalues and eigenvectors including generalized problem.";
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 = '';
}
}