BltInFunc-LOG.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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="LOG">
  5. <title>LOG</title>
  6. <para><emphasis role="bold">LOG<indexterm>
  7. <primary>LOG</primary>
  8. </indexterm><indexterm>
  9. <primary>LOG function</primary>
  10. </indexterm>(</emphasis><emphasis>n</emphasis><emphasis
  11. role="bold">)</emphasis></para>
  12. <informaltable colsep="1" frame="all" rowsep="1">
  13. <tgroup cols="2">
  14. <colspec colwidth="79.50pt" />
  15. <colspec colwidth="309.30pt" />
  16. <tbody>
  17. <row>
  18. <entry>n</entry>
  19. <entry>The real number to evaluate.</entry>
  20. </row>
  21. <row>
  22. <entry>Return:</entry>
  23. <entry>LOG returns a single real value.</entry>
  24. </row>
  25. </tbody>
  26. </tgroup>
  27. </informaltable>
  28. <para>The <emphasis role="bold">LOG </emphasis>function returns the base-10
  29. logarithm of the parameter.</para>
  30. <para>Example:</para>
  31. <programlisting>MyLogPI := LOG(3.14159); //0.49715</programlisting>
  32. <para>See Also: <link linkend="EXP">EXP</link>, <link linkend="SQRT">SQRT</link>, <link linkend="POWER">POWER</link>, <link linkend="LN">LN</link></para>
  33. </sect1>