var fDesc=new Array(); fDesc[0] = "InquiCalc is designed to provide much of the functionality you expect from a hand-held graphing calculator, but with additional features and interface advantages made possible by the PC platform.
InquiCalc supports calculations with complex numbers. Supported operations include not only basic arithmetic operations, roots, and exponents, but also logarithms, trigonometric, and hyperbolic functions in the complex plane.
You can perform calculations on two and three-dimensional vectors in InquiCalc. Standard vector operations including addition, subtraction, dot product, and cross product are supported. Functions to find the magnitude of a vector or a unit vector in the same direction as the original are also included."; 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 = ''; } }