<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Digital Signal ControllersのトピックRe: Exponential and natural logarithm calculation using MC56F84789</title>
    <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1826951#M2943</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I suppose it is okay to compute the exp function, it use software float library to compute the exp value.&lt;/P&gt;
&lt;P&gt;For the CodeWarrior for MCU ver11.x tools, I use the following code, I can pass the compilation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#include "math.h"&lt;/P&gt;
&lt;P&gt;float f1,f2;&lt;/P&gt;
&lt;P&gt;void main(void)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;f1=1.0;&lt;/P&gt;
&lt;P&gt;f2=exp(f1);&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;Pls have a try&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2024 08:27:07 GMT</pubDate>
    <dc:creator>xiangjun_rong</dc:creator>
    <dc:date>2024-03-13T08:27:07Z</dc:date>
    <item>
      <title>Exponential and natural logarithm calculation using MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1826109#M2942</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a official library for this kind of calculation for this DSP?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Mar 2024 10:53:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1826109#M2942</guid>
      <dc:creator>LuisWoll</dc:creator>
      <dc:date>2024-03-12T10:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential and natural logarithm calculation using MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1826951#M2943</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I suppose it is okay to compute the exp function, it use software float library to compute the exp value.&lt;/P&gt;
&lt;P&gt;For the CodeWarrior for MCU ver11.x tools, I use the following code, I can pass the compilation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#include "math.h"&lt;/P&gt;
&lt;P&gt;float f1,f2;&lt;/P&gt;
&lt;P&gt;void main(void)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;f1=1.0;&lt;/P&gt;
&lt;P&gt;f2=exp(f1);&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;Pls have a try&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2024 08:27:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1826951#M2943</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-03-13T08:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential and natural logarithm calculation using MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1828624#M2947</link>
      <description>&lt;P&gt;Tks, it works!&amp;nbsp;&lt;/P&gt;&lt;P&gt;In addiction to that, i looked for a ln (natural based log) function but could not find anything on the math.h, is there a way to do that? Mayber calling a log that i can define the base and write it as exp(1)...&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 15:36:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1828624#M2947</guid>
      <dc:creator>LuisWoll</dc:creator>
      <dc:date>2024-03-14T15:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Exponential and natural logarithm calculation using MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1828962#M2949</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Pls try to call:&lt;/P&gt;
&lt;P&gt;float f1,f2;&lt;/P&gt;
&lt;P&gt;void main(void)&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;f1=1.0;&lt;BR /&gt;f2=exp(f1); &lt;BR /&gt;f2=log(2.7);&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 02:51:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Exponential-and-natural-logarithm-calculation-using-MC56F84789/m-p/1828962#M2949</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2024-03-15T02:51:09Z</dc:date>
    </item>
  </channel>
</rss>

