12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
- "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
- <sect1 id="COSH">
- <title>COSH</title>
- <para><emphasis role="bold">COSH<indexterm>
- <primary>COSH</primary>
- </indexterm><indexterm>
- <primary>COSH function</primary>
- </indexterm>(</emphasis><emphasis>angle</emphasis><emphasis
- role="bold">)</emphasis></para>
- <para><informaltable colsep="1" frame="all" rowsep="1">
- <tgroup cols="2">
- <colspec colwidth="79.25pt" />
- <colspec colwidth="309.55pt" />
- <tbody>
- <row>
- <entry><emphasis>angle</emphasis></entry>
- <entry>The REAL radian value for which to find the hyperbolic
- cosine.</entry>
- </row>
- <row>
- <entry>Return:</entry>
- <entry>COSH returns a single REAL value.</entry>
- </row>
- </tbody>
- </tgroup>
- </informaltable></para>
- <para>The <emphasis role="bold">COSH </emphasis>function returns the
- hyperbolic cosine of the <emphasis>angle</emphasis>.</para>
- <para>Example:</para>
- <programlisting>Rad2Deg := 57.295779513082; //number of degrees in a radian
- Deg2Rad := 0.0174532925199; //number of radians in a degree
- Angle45 := 45 * Deg2Rad; //translate 45 degrees into radians
- HyperbolicCosine45 := COSH(Angle45);
- //get hyperbolic cosine of the 45 degree angle
- </programlisting>
- <para>See Also: <link linkend="ACOS">ACOS</link>, <link
- linkend="SIN">SIN</link>, <link linkend="TAN">TAN</link>, <link
- linkend="ASIN">ASIN</link>, <link linkend="ATAN">ATAN</link>, <link
- linkend="COS">COS</link>, <link linkend="SINH">SINH</link>, <link
- linkend="TANH">TANH</link></para>
- </sect1>
|