var fDesc=new Array(); fDesc[0] = "MathGraph
Type any expression and you'll see the graph. You can choose the x interval (e.g. x=from -1 to 20) and the step. Available functions are :
COS, SIN, SINH, COSH, TAN, COTAN, ARCTAN, ARG,EXP, LN, LOG10, LOG2, LOGN, SQRT, SQR, POWER, INTPOWER,MIN, MAX, ABS, TRUNC, INT, CEIL, FLOOR ,RANDOM and
SIGN (sign(x) is 1 for x>1, 0 for x=0, -1 for x<0),
ZERO (zero(x) is 0 for x=0, 1 for x<>0),
HEAV (heav(x) is =1 for x>0 and =0 for x<=0)."; 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 = ''; } }