BltInFunc-COSH.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
  4. <sect1 id="COSH">
  5. <title>COSH</title>
  6. <para><emphasis role="bold">COSH<indexterm>
  7. <primary>COSH</primary>
  8. </indexterm><indexterm>
  9. <primary>COSH function</primary>
  10. </indexterm>(</emphasis><emphasis>angle</emphasis><emphasis
  11. role="bold">)</emphasis></para>
  12. <para><informaltable colsep="1" frame="all" rowsep="1">
  13. <tgroup cols="2">
  14. <colspec colwidth="79.25pt" />
  15. <colspec colwidth="309.55pt" />
  16. <tbody>
  17. <row>
  18. <entry><emphasis>angle</emphasis></entry>
  19. <entry>The REAL radian value for which to find the hyperbolic
  20. cosine.</entry>
  21. </row>
  22. <row>
  23. <entry>Return:</entry>
  24. <entry>COSH returns a single REAL value.</entry>
  25. </row>
  26. </tbody>
  27. </tgroup>
  28. </informaltable></para>
  29. <para>The <emphasis role="bold">COSH </emphasis>function returns the
  30. hyperbolic cosine of the <emphasis>angle</emphasis>.</para>
  31. <para>Example:</para>
  32. <programlisting>Rad2Deg := 57.295779513082; //number of degrees in a radian
  33. Deg2Rad := 0.0174532925199; //number of radians in a degree
  34. Angle45 := 45 * Deg2Rad; //translate 45 degrees into radians
  35. HyperbolicCosine45 := COSH(Angle45);
  36. //get hyperbolic cosine of the 45 degree angle
  37. </programlisting>
  38. <para>See Also: <link linkend="ACOS">ACOS</link>, <link
  39. linkend="SIN">SIN</link>, <link linkend="TAN">TAN</link>, <link
  40. linkend="ASIN">ASIN</link>, <link linkend="ATAN">ATAN</link>, <link
  41. linkend="COS">COS</link>, <link linkend="SINH">SINH</link>, <link
  42. linkend="TANH">TANH</link></para>
  43. </sect1>