<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Random numbers: standard normal distribution in flash/as3</title>
	<atom:link href="http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/</link>
	<description>Elaborations on flash.</description>
	<lastBuildDate>Fri, 23 Sep 2011 08:04:26 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Chuck</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-282</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Wed, 08 Jun 2011 23:26:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-282</guid>
		<description>Ran across your article and found it quite interesting. But shouldn&#039;t the lines...

	cache = x * w;			//  Cache one of the outputs
	return y * w;			//  and return the other.

read...

	cache = x * x * w;			//  Cache one of the outputs
	return y * y * w;			//  and return the other.

? the result of the standardNormal result is way out of the (0,1) bounds without the modification.</description>
		<content:encoded><![CDATA[<p>Ran across your article and found it quite interesting. But shouldn&#8217;t the lines&#8230;</p>
<p>	cache = x * w;			//  Cache one of the outputs<br />
	return y * w;			//  and return the other.</p>
<p>read&#8230;</p>
<p>	cache = x * x * w;			//  Cache one of the outputs<br />
	return y * y * w;			//  and return the other.</p>
<p>? the result of the standardNormal result is way out of the (0,1) bounds without the modification.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hristo</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-167</link>
		<dc:creator>hristo</dc:creator>
		<pubDate>Sat, 20 Mar 2010 15:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-167</guid>
		<description>I&#039;ll mail it to you in a bit - wouldn&#039;t post it here, because it&#039;s so not the most perfectly finished tool on earth you see.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll mail it to you in a bit &#8211; wouldn&#8217;t post it here, because it&#8217;s so not the most perfectly finished tool on earth you see.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oly</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-166</link>
		<dc:creator>oly</dc:creator>
		<pubDate>Fri, 19 Mar 2010 15:40:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-166</guid>
		<description>Hi, is the histogram available? the fla file i mean. i think it&#039;s an interesting tool, and a good way to test other functions

Good job btw</description>
		<content:encoded><![CDATA[<p>Hi, is the histogram available? the fla file i mean. i think it&#8217;s an interesting tool, and a good way to test other functions</p>
<p>Good job btw</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hristo</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-91</link>
		<dc:creator>hristo</dc:creator>
		<pubDate>Thu, 30 Jul 2009 16:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-91</guid>
		<description>The code above is as3, but there is nothing in there that as2 can&#039;t do, you just need to rewrite it a bit. The visualisation above is a histogram showing how the sample builds up (you see the n number is the number of observations in the sample).

If you have any trouble getting it to work, mail me.</description>
		<content:encoded><![CDATA[<p>The code above is as3, but there is nothing in there that as2 can&#8217;t do, you just need to rewrite it a bit. The visualisation above is a histogram showing how the sample builds up (you see the n number is the number of observations in the sample).</p>
<p>If you have any trouble getting it to work, mail me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lahiru</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-90</link>
		<dc:creator>Lahiru</dc:creator>
		<pubDate>Thu, 30 Jul 2009 08:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-90</guid>
		<description>Hi, hristro, 

Really appreciate your work. Thank you for sharing your knowledge.
I abeginner in action script. I&#039;m working on my university project and for that I need to visualize &quot;normal distribution&quot;. I found that the way you have shown is perfect. 

What I want to know is can I use this in &quot;action script 2 based flash movie? if cannot, then what modifications should I do? After downloading the .as file what should I do to create a flash movie, like the one you have put on this blog? 

hope you will guide me.
thank you.</description>
		<content:encoded><![CDATA[<p>Hi, hristro, </p>
<p>Really appreciate your work. Thank you for sharing your knowledge.<br />
I abeginner in action script. I&#8217;m working on my university project and for that I need to visualize &#8220;normal distribution&#8221;. I found that the way you have shown is perfect. </p>
<p>What I want to know is can I use this in &#8220;action script 2 based flash movie? if cannot, then what modifications should I do? After downloading the .as file what should I do to create a flash movie, like the one you have put on this blog? </p>
<p>hope you will guide me.<br />
thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hristo</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-88</link>
		<dc:creator>hristo</dc:creator>
		<pubDate>Tue, 28 Jul 2009 07:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-88</guid>
		<description>Hey. It should be working fine, I doublechecked the source.
You should know that standardNormal() is 2 to 3 times slower than Math.random(), but I doubt that&#039;s your problem.

Mail me your sources and I&#039;ll tell you what I think.</description>
		<content:encoded><![CDATA[<p>Hey. It should be working fine, I doublechecked the source.<br />
You should know that standardNormal() is 2 to 3 times slower than Math.random(), but I doubt that&#8217;s your problem.</p>
<p>Mail me your sources and I&#8217;ll tell you what I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RGriffoGoes</title>
		<link>http://blog.controul.com/2009/04/standard-normal-distribution-in-as3/comment-page-1/#comment-87</link>
		<dc:creator>RGriffoGoes</dc:creator>
		<pubDate>Mon, 27 Jul 2009 03:01:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.controul.com/?p=138#comment-87</guid>
		<description>Just downloaded the source provided and when I try to use with my 2d random visualization the &quot;standardNormal&quot; reaches 15s timelimit and timeout.

Anything I&#039;m doing wrong? Any specific setting needs to be set? using CS4.

Thanks</description>
		<content:encoded><![CDATA[<p>Just downloaded the source provided and when I try to use with my 2d random visualization the &#8220;standardNormal&#8221; reaches 15s timelimit and timeout.</p>
<p>Anything I&#8217;m doing wrong? Any specific setting needs to be set? using CS4.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

