Difference between revisions of "Manuals/calci/DCOTAN"

From ZCubes Wiki
Jump to navigation Jump to search
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''DCOTAN(x)'''</div><br/>
+
<div style="font-size:30px">'''DCOTAN(Number)'''</div><br/>
* where '''x''' is in Radians
+
* '''Number''' is the angle in Degrees.
* by default Calci use Radian as angle
+
**DCOTAN(),returns the double-precision cotangent of the given angle.
[[Manuals/calci/DSIN | DSIN]] can be used if the angle is in degrees.  
 
  
The angle can be a single value or any complex array of values.
+
[[Manuals/calci/COTAN| COTAN]] can be used if the angle is in Radians.<br/>
 +
The angle can be a single value or any complex array of values.<br/>
 +
For example DCOTAN(1..100) can give an array of the results, which is the COTAN value for each of the elements in the array. The array could be of any values either '+' or '-' like 1..5@DCOTAN or (-5)..(-1)@DCOTAN.  
  
For example SIN(1..100) can give an array of the results, which is the SIN value for each of the elements in the array. The array could be of any shape.  
+
==Description==
DCOTAN returns the double-precision real cotangent of its double-precision real argument.
+
*This function is used to obtain the Cotangent value of 'x' in degrees.<br/>
 +
*It is the reciprocal of TAN function i.e, '''Cotan(x)''' = '''1 / Tan(x)''' or '''Cos(x) / Sin(x)'''.<br/>
 +
*In a right angled triangle '''Cotan(x) = Adjacent side / Opposite side'''.<br/>
 +
*To obtain the value in Radians multiply with PI()/180 or use Cotan function COTAN(x)
 +
*DCOTAN returns NaN if 'x' is not real
  
 +
The following example shows how COTAN is applied to an array of numbers containing angles 1..10.
 +
*Type =1..10@DCOTAN in Calci
 +
*Type =1..10@DCOTAN or 1..10@DCOTAN in ZOS
  
DCOTAN returns NaN if n is not real
+
{| class="wikitable"
 +
|-
 +
! Angles !! DCOTAN
 +
|-
 +
| 1 || 0.642092616
 +
|-
 +
| 2 || -0.457657554
 +
|-
 +
| 3 || -7.015252551
 +
|-
 +
| 4 ||  0.863691154
 +
|-
 +
| 5 || -0.295812916
 +
|-
 +
| 6 || -3.436353004
 +
|-
 +
| 7 || 1.147515422
 +
|-
 +
| 8 || -0.147065064
 +
|-
 +
| 9 || -2.210845411
 +
|-
 +
| 10 || 1.542351045
 +
|}
  
 +
== Examples ==
 +
'''DCOTAN(x)'''
 +
*'''x  ''' is the angle in degrees.
 +
* COTAN(-x)=-COTAN(x)
 +
* Result shows COTAN(abc)= NAN
  
 +
{|id="TABLE1" class="SpreadSheet blue"
  
 +
|- class="even"
 +
|'''DCOTAN(Degrees)'''
 +
|'''Value'''
  
Lets see an example in (Column2Row1)
+
|- class="odd"
 +
| DCOTAN (100)
 +
| -0.1762698070846492
  
 +
|- class="even"
 +
| DCOTAN (20)
 +
| 2.7474774194546225
  
Returns 1.91754 for DCOTAN(40)
+
|- class="odd"
 +
| DCOTAN (-20)
 +
| -2.7474774194546225
  
Consider another example in (Column2Row2)
+
|}
  
Returns NaN for DCOTAN("abc")
+
==Related Videos==
  
 +
{{#ev:youtube|Kz6tCMgat94|280|center|Trig Function Values in Degrees}}
  
{| id="TABLE3" class="SpreadSheet blue"
+
==See Also==
|+ Default Calci
+
 
|- class="even"
+
*[[Manuals/calci/TAN | TAN]]
| class=" " |
+
*[[Manuals/calci/DTAN | DTAN]]
| Column1
+
*[[Manuals/calci/TANH | TANH]]
| Column2
+
*[[Manuals/calci/ASIN | ASIN]]
| Column3
+
 
| Column4
+
==References==
|- class="odd"
+
 
| class=" " | Row1
+
*[http://en.wikipedia.org/wiki/Trigonometric_functions List of Trigonometric Functions]
| 40
+
 
| class="sshl_f          1" | 1.191754
+
 
| class="          sshl_f  sshl_f" |
+
 
| class="                                                          sshl_f  sshl_f" |
+
*[[Z_API_Functions | List of Main Z Functions]]
|- class="even"
+
 
| class="  " | Row2
+
*[[ Z3 |   Z3 home ]]
| abc
 
| class="sshl_f" | NaN
 
| class=" sshl_f" |
 
| class="sshl_f  sshl_f" |
 
|- class="odd"
 
| Row3
 
|
 
| class="                      sshl_f  sshl_f SelectTD1 ChangeBGColor SelectTD1" |
 
<div id="2Space_Handle" class="zhandles" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="2Space_Copy" class="zhandles" title="Click and Drag over to AutoFill other cells."></div><div id="2Space_Drag" class="zhandles" title="Click and Drag to Move/Copy Area.">[[Image:copy-cube.gif]]  </div>
 
| class="sshl_f  " |
 
| class="sshl_f" |
 
|- class="even"
 
| Row4
 
|
 
| class=" sshl_f" |
 
| class="sshl_f" |
 
|
 
|- class="odd"
 
| class=" " | Row5
 
|
 
| class=" sshl_f" |
 
| class="sshl_f" |
 
|
 
|- class="even"
 
| Row6
 
|
 
|
 
| class="sshl_f" |
 
|
 
|}
 

Latest revision as of 16:17, 25 June 2018

DCOTAN(Number)


  • Number is the angle in Degrees.
    • DCOTAN(),returns the double-precision cotangent of the given angle.

COTAN can be used if the angle is in Radians.
The angle can be a single value or any complex array of values.
For example DCOTAN(1..100) can give an array of the results, which is the COTAN value for each of the elements in the array. The array could be of any values either '+' or '-' like 1..5@DCOTAN or (-5)..(-1)@DCOTAN.

Description

  • This function is used to obtain the Cotangent value of 'x' in degrees.
  • It is the reciprocal of TAN function i.e, Cotan(x) = 1 / Tan(x) or Cos(x) / Sin(x).
  • In a right angled triangle Cotan(x) = Adjacent side / Opposite side.
  • To obtain the value in Radians multiply with PI()/180 or use Cotan function COTAN(x)
  • DCOTAN returns NaN if 'x' is not real

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

  • Type =1..10@DCOTAN in Calci
  • Type =1..10@DCOTAN or 1..10@DCOTAN in ZOS
Angles DCOTAN
1 0.642092616
2 -0.457657554
3 -7.015252551
4 0.863691154
5 -0.295812916
6 -3.436353004
7 1.147515422
8 -0.147065064
9 -2.210845411
10 1.542351045

Examples

DCOTAN(x)

  • x   is the angle in degrees.
  • COTAN(-x)=-COTAN(x)
  • Result shows COTAN(abc)= NAN
DCOTAN(Degrees) Value
DCOTAN (100) -0.1762698070846492
DCOTAN (20) 2.7474774194546225
DCOTAN (-20) -2.7474774194546225

Related Videos

Trig Function Values in Degrees

See Also

References