Difference between revisions of "Manuals/calci/COSEC"

From ZCubes Wiki
Jump to navigation Jump to search
 
(18 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''COSEC(x)'''</div><br/>
+
<div style="font-size:30px">'''COSEC(Number)'''</div><br/>
* where '''x''' is in Radians
 
* by default Calci use Radian as angle
 
  
[[Manuals/calci/COSEC | COSEC]] can be used if the angle is in degrees.  
+
* Number is the angle value in Radians.
 +
**COSEC() returns the cosecant of the given angle.
 +
* by default, Calci use angle in Radians
 +
 
 +
[[Manuals/calci/DCOSEC | DCOSEC]] can be used if the angle is in Degrees.  
  
 
The angle can be a single value or any complex array of values.
 
The angle can be a single value or any complex array of values.
  
For example COSEC(1..100) can give an array of the results, which is the COSEC value for each of the elements in the array. The array could be of any shape.  
+
For example COSEC(1..100) can give an array of the results, which is the COSEC value for each of the elements in the array. The array could be of any values either '+' or '-' like 1..5@COSEC or (-5)..(-1)@COSEC.  
  
 
==Description==
 
==Description==
 
Consider &nbsp;&nbsp;&nbsp; '''x = 90'''&nbsp;&nbsp;&nbsp;  then &nbsp;&nbsp;&nbsp;  '''=COSEC(RADIANS(90))'''&nbsp;&nbsp;&nbsp; gives &nbsp;&nbsp;&nbsp;'''1''' <br/>
 
Consider &nbsp;&nbsp;&nbsp; '''x = 90'''&nbsp;&nbsp;&nbsp;  then &nbsp;&nbsp;&nbsp;  '''=COSEC(RADIANS(90))'''&nbsp;&nbsp;&nbsp; gives &nbsp;&nbsp;&nbsp;'''1''' <br/>
This function gives the cosecant of angle 'x' in radians .This function is the reciprocal of SIN function. i.e.,cosec(x)=1/sin(x).In a right angled triangle cosec(x)=hypotenuse/opposite side.To convert the radian value in to degrees multiply with 180/PI() or we have to use the radians function like COSEC(RADIANS(45)).This function is also denoted by CSC(x)
+
The above function gives the Cosecant of 'x' in Degree.<br/>
 
+
*Cosec function gives the Cosecant of angle 'x'.
The following example shows how COSEC is applied to an array of numbers containing numbers 1..10.
+
*This function is the reciprocal of SIN function. i.e, '''Cosec(x) = 1 / Sin(x)'''.
 +
*In a right angled triangle '''Cosec(x) = Hypotenuse / Opposite side'''.
 +
*Here x is in Radians.  
 +
*To convert Radians to Degrees  multiply with 180/PI() or we have to use the Radians function COSEC(RADIANS(x)) or DCOSEC(x).<br/>
  
1..10@TAN
+
The following example shows how COSEC is applied to an array of numbers containing angles 1..10.
 +
* Type =1..10@COSEC in Calci
 +
* Type =1..10@COSEC or 1..10@COSEC in [[ZOS]]
  
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! Number !! COSEC
+
! Angles !! COSEC
 
|-
 
|-
 
| 1 || 1.1883951057781212
 
| 1 || 1.1883951057781212
Line 44: Line 51:
 
== Examples ==
 
== Examples ==
 
'''COSEC(x)'''
 
'''COSEC(x)'''
*'''x  ''' is the angle in radians.
+
*''' x  ''' is the angle in radians.
  
 
{|id="TABLE1" class="SpreadSheet blue"
 
{|id="TABLE1" class="SpreadSheet blue"
Line 54: Line 61:
 
|- class="odd"
 
|- class="odd"
 
| COSEC(0)
 
| COSEC(0)
| 0
+
| infinity
  
 
|- class="even"
 
|- class="even"
 
| COSEC(1)
 
| COSEC(1)
| 1.55740772465
+
| 1.1883951057781212
  
 
|- class="odd"
 
|- class="odd"
 
|COSEC(90)
 
|COSEC(90)
| -1.99520041221
+
| 1.1185724071637084
  
 
|}
 
|}
  
 +
==Related Videos==
 +
 +
{{#ev:youtube|Q7htxHDN8LE|280|center|Cosecant}}
  
 
==See Also==
 
==See Also==
  
*[[Manuals/calci/COSEC | DTAN]]
+
*[[Manuals/calci/DCOSEC | DCOSEC]]
 
+
*[[Manuals/calci/SIN | SIN]]
*[[Manuals/calci/ATAN | ATAN]]
+
*[[Manuals/calci/ASIN | ASIN]]
 +
*[[Manuals/calci/DSIN | DSIN]]
  
 
==References==
 
==References==
  
 
*[http://en.wikipedia.org/wiki/Trigonometric_functions List of Trigonometric Functions]
 
*[http://en.wikipedia.org/wiki/Trigonometric_functions List of Trigonometric Functions]
*[http://en.wikipedia.org/wiki/Sine TAN]
+
 
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 17:23, 18 June 2018

COSEC(Number)


  • Number is the angle value in Radians.
    • COSEC() returns the cosecant of the given angle.
  • by default, Calci use angle in Radians

DCOSEC can be used if the angle is in Degrees.

The angle can be a single value or any complex array of values.

For example COSEC(1..100) can give an array of the results, which is the COSEC value for each of the elements in the array. The array could be of any values either '+' or '-' like 1..5@COSEC or (-5)..(-1)@COSEC.

Description

Consider     x = 90    then     =COSEC(RADIANS(90))    gives    1
The above function gives the Cosecant of 'x' in Degree.

  • Cosec function gives the Cosecant of angle 'x'.
  • This function is the reciprocal of SIN function. i.e, Cosec(x) = 1 / Sin(x).
  • In a right angled triangle Cosec(x) = Hypotenuse / Opposite side.
  • Here x is in Radians.
  • To convert Radians to Degrees multiply with 180/PI() or we have to use the Radians function COSEC(RADIANS(x)) or DCOSEC(x).

The following example shows how COSEC is applied to an array of numbers containing angles 1..10.

  • Type =1..10@COSEC in Calci
  • Type =1..10@COSEC or 1..10@COSEC in ZOS
Angles COSEC
1 1.1883951057781212
2 1.0997501702946164
3 7.086167395737187
4 -1.3213487088109024
5 -1.0428352127714058
6 -3.5788995472544056
7 1.5221010625637303
8 1.010756218400097
9 2.426486643551989
10 -1.8381639608896658

Examples

COSEC(x)

  • x   is the angle in radians.
COSEC(Radian) Value
COSEC(0) infinity
COSEC(1) 1.1883951057781212
COSEC(90) 1.1185724071637084

Related Videos

Cosecant

See Also

References