<?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: Regard ippsDemodulateFM_CToR_16s function usage  in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907034#M13652</link>
    <description>&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;Hello, &lt;BR /&gt;&lt;BR /&gt;see the comments from the function expert: &lt;BR /&gt;&lt;BR /&gt;Description of the Demodulator module:&lt;BR /&gt;&lt;BR /&gt;To demodulate the complex input signal, the demodulator performs the following steps:&lt;BR /&gt;&lt;BR /&gt;1) Calculate the derivate of the phase of the input signal. That is done by a complex multiplication with the conjugate of the previous sample.&lt;BR /&gt;&lt;BR /&gt;ippsConj_32fc(complexIn, conjugatedIn+1, BLOCK_LENGTH);&lt;BR /&gt;ippsMul_32fc(complexIn, conjugatedIn, multiplyResult, BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;2) Calculate the phase of the resulting complex sample&lt;BR /&gt;&lt;BR /&gt;ippsPhase_32fc(multiplyResult, angleOut,BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;3) The output you get here ranges from pi to pi, so, as we want a value between -1 and 1, we have to multiply with 1/pi (or for fixed point: 32768/pi).&lt;BR /&gt;&lt;BR /&gt;ippsMulC_32f_I(Scale, angleOut,BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;That`s all.&lt;BR /&gt;&lt;BR /&gt;Below is the sequence of IPP calls that emulates this function behavior:&lt;BR /&gt;&lt;BR /&gt;//START&lt;BR /&gt;ippsRealToCplx_16s(); &lt;BR /&gt;ippsConvert_16s32f();&lt;BR /&gt;ippsMulC_32f_I();//scale to -1 to 1&lt;BR /&gt;ippsConj_32fc();&lt;BR /&gt;ippsMul_32fc();&lt;BR /&gt;ippsPhase_32fc(); &lt;BR /&gt;ippsMulC_32f_I(); //scale with 32768/pi to limit demodulator output to fixed point +1/-1 in 0.15&lt;BR /&gt;//now we will need to go fixed point again&lt;BR /&gt;ippsConvert_32f16s_Sfs();&lt;BR /&gt;//END&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao&lt;/DIV&gt;
&lt;BR /&gt;</description>
    <pubDate>Mon, 03 Aug 2009 07:11:48 GMT</pubDate>
    <dc:creator>Chao_Y_Intel</dc:creator>
    <dc:date>2009-08-03T07:11:48Z</dc:date>
    <item>
      <title>Regard ippsDemodulateFM_CToR_16s function usage</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907033#M13651</link>
      <description>&lt;P&gt;This function suppose to converts the frequency modulated signal to the initial demodulated form, this is a new function in IPP and it is realy useful, but there is no samples about using this function and the parameters are just for the input and output but there is no parameter for the carrier frequency or for the frequency  deviation, so is there any thing missing or I did not understand how to use this function.&lt;/P&gt;
&lt;P&gt;Syntax&lt;BR /&gt;IppStatus ippsDemodulateFM_CToR_16s(const Ipp16s* pSrcRe, const Ipp16s* pSrcIm, Ipp16s* pDst, int len, Ipp16sc* pDlyPoint);&lt;BR /&gt;&lt;BR /&gt;Parameters&lt;BR /&gt;pSrcRe&lt;BR /&gt; Pointer to the source vector with real parts of complex elements. &lt;BR /&gt;pSrcIm&lt;BR /&gt; Pointer to the source vector with imaginary parts of complex elements. &lt;BR /&gt;pDst&lt;BR /&gt; Pointer to the destination vector. &lt;BR /&gt;len&lt;BR /&gt; Number of elements in the vector. &lt;BR /&gt;pDlyPoint&lt;BR /&gt; Pointer to the value required for operation. &lt;BR /&gt;&lt;BR /&gt; I need any help in using this function.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2009 13:05:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907033#M13651</guid>
      <dc:creator>dertaurus</dc:creator>
      <dc:date>2009-07-29T13:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regard ippsDemodulateFM_CToR_16s function usage</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907034#M13652</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;BR /&gt;Hello, &lt;BR /&gt;&lt;BR /&gt;see the comments from the function expert: &lt;BR /&gt;&lt;BR /&gt;Description of the Demodulator module:&lt;BR /&gt;&lt;BR /&gt;To demodulate the complex input signal, the demodulator performs the following steps:&lt;BR /&gt;&lt;BR /&gt;1) Calculate the derivate of the phase of the input signal. That is done by a complex multiplication with the conjugate of the previous sample.&lt;BR /&gt;&lt;BR /&gt;ippsConj_32fc(complexIn, conjugatedIn+1, BLOCK_LENGTH);&lt;BR /&gt;ippsMul_32fc(complexIn, conjugatedIn, multiplyResult, BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;2) Calculate the phase of the resulting complex sample&lt;BR /&gt;&lt;BR /&gt;ippsPhase_32fc(multiplyResult, angleOut,BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;3) The output you get here ranges from pi to pi, so, as we want a value between -1 and 1, we have to multiply with 1/pi (or for fixed point: 32768/pi).&lt;BR /&gt;&lt;BR /&gt;ippsMulC_32f_I(Scale, angleOut,BLOCK_LENGTH);&lt;BR /&gt;&lt;BR /&gt;That`s all.&lt;BR /&gt;&lt;BR /&gt;Below is the sequence of IPP calls that emulates this function behavior:&lt;BR /&gt;&lt;BR /&gt;//START&lt;BR /&gt;ippsRealToCplx_16s(); &lt;BR /&gt;ippsConvert_16s32f();&lt;BR /&gt;ippsMulC_32f_I();//scale to -1 to 1&lt;BR /&gt;ippsConj_32fc();&lt;BR /&gt;ippsMul_32fc();&lt;BR /&gt;ippsPhase_32fc(); &lt;BR /&gt;ippsMulC_32f_I(); //scale with 32768/pi to limit demodulator output to fixed point +1/-1 in 0.15&lt;BR /&gt;//now we will need to go fixed point again&lt;BR /&gt;ippsConvert_32f16s_Sfs();&lt;BR /&gt;//END&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Chao&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Aug 2009 07:11:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907034#M13652</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2009-08-03T07:11:48Z</dc:date>
    </item>
    <item>
      <title>what does the parameter</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907035#M13653</link>
      <description>what does the parameter "pDlyPoint" mean? I don't quite understand the annotation.Can somebody give me a example of the use of the function, thanks a lot.</description>
      <pubDate>Wed, 26 Sep 2012 07:52:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Regard-ippsDemodulateFM-CToR-16s-function-usage/m-p/907035#M13653</guid>
      <dc:creator>Xuguang_H_</dc:creator>
      <dc:date>2012-09-26T07:52:58Z</dc:date>
    </item>
  </channel>
</rss>

