<?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 implement a white noise in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/implement-a-white-noise/m-p/911133#M12160</link>
    <description>I want implement a &lt;B&gt;white noise&lt;/B&gt;... I have made a C++ function to return a number between &lt;I&gt;[0,sigma]&lt;/I&gt;, where &lt;I&gt;sigma &lt;/I&gt;is a standard deviation for the gauss distribuzion.&lt;BR /&gt;For noise generator I have use the functions following :&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="1"&gt;vslNewStream(&amp;amp;stream,VSL_BRNG_R250,1);&lt;BR /&gt;status1 = vdRngGaussian(VSL_METHOD_DGAUSSIAN_BOXMULLER,stream,N,vet,0,noise);&lt;BR /&gt;vslDeleteStream(&amp;amp;stream);&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Times New Roman"&gt;&lt;FONT size="3"&gt;but it is not work, becouse the function return numbers negative and positive... my output is:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="1"&gt;vet= [ -0.00002, 0.00005, -0.000018, ..... , -0.000077]&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;how do I do to make number to return between [0,sigma]?&lt;BR /&gt;help me please!&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description>
    <pubDate>Tue, 04 Sep 2007 15:47:41 GMT</pubDate>
    <dc:creator>anacondgame</dc:creator>
    <dc:date>2007-09-04T15:47:41Z</dc:date>
    <item>
      <title>implement a white noise</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/implement-a-white-noise/m-p/911133#M12160</link>
      <description>I want implement a &lt;B&gt;white noise&lt;/B&gt;... I have made a C++ function to return a number between &lt;I&gt;[0,sigma]&lt;/I&gt;, where &lt;I&gt;sigma &lt;/I&gt;is a standard deviation for the gauss distribuzion.&lt;BR /&gt;For noise generator I have use the functions following :&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="1"&gt;vslNewStream(&amp;amp;stream,VSL_BRNG_R250,1);&lt;BR /&gt;status1 = vdRngGaussian(VSL_METHOD_DGAUSSIAN_BOXMULLER,stream,N,vet,0,noise);&lt;BR /&gt;vslDeleteStream(&amp;amp;stream);&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Times New Roman"&gt;&lt;FONT size="3"&gt;but it is not work, becouse the function return numbers negative and positive... my output is:&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="Courier New" size="1"&gt;vet= [ -0.00002, 0.00005, -0.000018, ..... , -0.000077]&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;how do I do to make number to return between [0,sigma]?&lt;BR /&gt;help me please!&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Tue, 04 Sep 2007 15:47:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/implement-a-white-noise/m-p/911133#M12160</guid>
      <dc:creator>anacondgame</dc:creator>
      <dc:date>2007-09-04T15:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: implement a white noise</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/implement-a-white-noise/m-p/911134#M12161</link>
      <description>&lt;P&gt;Normally distributed random numbers which have mathematical expectation 0 andstandard deviation sigma can be both positive and negative -chances tohave negative outputare 0.5. To generate random numbers from interval [0, sigma] you may want to use another generator, for examplegenerator of uniformly distributedrandom numbers.Type of the generator to use depends on the requirements of your problem (in particular, type of white noise). &lt;/P&gt;
&lt;P&gt;Also,when you make call to the Gaussian generator, please make sure to pass correct set of parameters to the routine:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;status1 = vdRngGaussian(VSL_METHOD_DGAUSSIAN_BOXMULLER,stream,N,vet,0,&lt;FONT style="BACKGROUND-COLOR: #ff1493"&gt;sigma&lt;/FONT&gt;);&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;Thanks,Andrey&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2007 06:33:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/implement-a-white-noise/m-p/911134#M12161</guid>
      <dc:creator>Andrey_N_Intel</dc:creator>
      <dc:date>2007-09-05T06:33:00Z</dc:date>
    </item>
  </channel>
</rss>

