<?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>topic Re: How to PowerQuad to implement powf function? in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1542851#M50488</link>
    <description>&lt;P lang="es-MX"&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/207797"&gt;@Amendes&lt;/a&gt;,&lt;/P&gt;
&lt;P lang="es-MX"&gt;PowerQuad specializes in matrix operations, FFT, convolutions and more complex algorithms for &lt;A href="https://www.nxp.com/docs/en/application-note/AN13498.pdf" target="_blank"&gt;Signal Processing.&lt;/A&gt;&lt;/P&gt;
&lt;P lang="es-MX"&gt;Currently there is no implementation plans for the pow and powf functions in PowerQuad. I will ask with the development team for the compatibility with both functions.&lt;/P&gt;
&lt;P lang="es-MX"&gt;The library "math.h", however, supports both pow and powf if you need to implement them in a project.&lt;/P&gt;
&lt;P lang="es-MX"&gt;Best regards, Julian&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2022 17:13:04 GMT</pubDate>
    <dc:creator>Julián_AragónM</dc:creator>
    <dc:date>2022-10-24T17:13:04Z</dc:date>
    <item>
      <title>How to PowerQuad to implement powf function?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1541210#M50457</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Powerquad has the functions: ln(x) e^(x) and e^(-x). So I suppose it is possible to implement the powf function using Powerquad, I found it strange that NXP did not make a macro of it in the Powerquad API or commented on this possibility in the application note. Are there any restrictions on the range of values of x that make it impossible to implement the powf function using powerquad?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 13:48:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1541210#M50457</guid>
      <dc:creator>Amendes</dc:creator>
      <dc:date>2022-10-20T13:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to PowerQuad to implement powf function?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1542851#M50488</link>
      <description>&lt;P lang="es-MX"&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/207797"&gt;@Amendes&lt;/a&gt;,&lt;/P&gt;
&lt;P lang="es-MX"&gt;PowerQuad specializes in matrix operations, FFT, convolutions and more complex algorithms for &lt;A href="https://www.nxp.com/docs/en/application-note/AN13498.pdf" target="_blank"&gt;Signal Processing.&lt;/A&gt;&lt;/P&gt;
&lt;P lang="es-MX"&gt;Currently there is no implementation plans for the pow and powf functions in PowerQuad. I will ask with the development team for the compatibility with both functions.&lt;/P&gt;
&lt;P lang="es-MX"&gt;The library "math.h", however, supports both pow and powf if you need to implement them in a project.&lt;/P&gt;
&lt;P lang="es-MX"&gt;Best regards, Julian&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:13:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1542851#M50488</guid>
      <dc:creator>Julián_AragónM</dc:creator>
      <dc:date>2022-10-24T17:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to PowerQuad to implement powf function?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1542863#M50489</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Julian,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I don't expect powerquad to be able to do the powf function directly. I didn't understand why NXP didn't create an API to do powf using ln(x) and e^x. I got a LPC55S69 kit and tested these functions, and I noticed that the only limitation is in the function &lt;SPAN&gt;e^(x)&amp;nbsp;&lt;/SPAN&gt;, where x cannot be too big, so that &lt;SPAN&gt;e^(x)&amp;nbsp;&lt;/SPAN&gt;is bigger than 2^32. Even so, it is very impressive&lt;/P&gt;&lt;P&gt;Then it is possible to implement powf, with the limitation that x^y is less than 2^32.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 17:45:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1542863#M50489</guid>
      <dc:creator>Amendes</dc:creator>
      <dc:date>2022-10-24T17:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to PowerQuad to implement powf function?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1543135#M50496</link>
      <description>&lt;P&gt;The (vendor-independant) ARM DSP-Lib used to provide an implementation.&lt;BR /&gt;Have you checked ?&lt;/P&gt;&lt;P&gt;It is a while since I worked with it.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Oct 2022 06:08:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-PowerQuad-to-implement-powf-function/m-p/1543135#M50496</guid>
      <dc:creator>frank_m</dc:creator>
      <dc:date>2022-10-25T06:08:18Z</dc:date>
    </item>
  </channel>
</rss>

