Difference between revisions of "Csc"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>function Csc(X: Extended): Extended; </func> ==Availability== SCAR Divi 3.00 > Current ==Description== This function calculates the [http://mathworld.wolfr...")
 
(See Also)
Line 21: Line 21:
  
 
==See Also==
 
==See Also==
*[[Inversus]]
+
*[[ArcCsc]]
 +
*[[Sec]]
 +
*[[Secant]]
 +
*[[Sin]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Math Functions]]
 
[[Category:Math Functions]]

Revision as of 17:29, 25 June 2011

Definition

<func>function Csc(X: Extended): Extended; </func>

Availability

SCAR Divi 3.00 > Current

Description

This function calculates the cosecant of a value X. The cosecant is the ratio of the length of the hypotenuse to the length of the opposite side. It is a trigonometric function.

Csc(X) = 1 / Sin(X)

Example

begin
  WriteLn(Csc(Pi));
end.

Output:

1,26804284593616E18

See Also