Type Method
Format Math.tan (value)
Commentary
Takes the tangent of the value.
Sample code - QC 2 JavaScript
n = inputs [0] / 3;
outputs [0] = Math.tan (n);
Sample code - QC 3 JavaScript
function (__number out[1]) main (__number input[1])
{
var result = new Object();
var n = input[0] / 3;
result.out = Math.tan(n);
return result;
}