Jump to content

Trigonometric functions: Difference between revisions

adding maxima
(adding maxima)
Line 1,053:
tand(78.000000)= 4.704630
arctand(4.704630)= 78.000000</lang>
 
=={{header|Maxima}}==
<lang maxima>a: %pi / 3;
[sin(a), cos(a), tan(a), sec(a), csc(a), cot(a)];
 
b: 1 / 2;
[asin(b), acos(b), atan(b), asec(1 / b), acsc(1 / b), acot(b)];
 
/* Hyperbolic functions are also available */
a: 1 / 2;
[sinh(a), cosh(a), tanh(a), sech(a), csch(a), coth(a)], numer;
[asinh(a), acosh(1 / a), atanh(a), asech(a), acsch(a), acoth(1 / a)], numer;</lang>
 
=={{header|MAXScript}}==
168

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.