<?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: Calculating running variance in Python and C++</title>
	<atom:link href="http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/</link>
	<description>cognition, language, social systems; statistics, visualization, computation</description>
	<lastBuildDate>Tue, 25 Nov 2025 13:11:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Tom MacWright</title>
		<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/#comment-162128</link>
		<dc:creator>Tom MacWright</dc:creator>
		<pubDate>Wed, 27 Jun 2012 17:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://anyall.org/blog/?p=356#comment-162128</guid>
		<description><![CDATA[Thanks for posting this code! It was super-informative and a great shortcut to implementing standard deviation &amp; variation in javascript with streams - https://github.com/tmcw/stream-statistics]]></description>
		<content:encoded><![CDATA[<p>Thanks for posting this code! It was super-informative and a great shortcut to implementing standard deviation &amp; variation in javascript with streams &#8211; <a href="https://github.com/tmcw/stream-statistics" rel="nofollow">https://github.com/tmcw/stream-statistics</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brendano</title>
		<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/#comment-871</link>
		<dc:creator>brendano</dc:creator>
		<pubDate>Wed, 03 Dec 2008 17:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://anyall.org/blog/?p=356#comment-871</guid>
		<description><![CDATA[Pretty cool, thanks!

Is windowed variance even harder?]]></description>
		<content:encoded><![CDATA[<p>Pretty cool, thanks!</p>
<p>Is windowed variance even harder?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Lemire</title>
		<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/#comment-870</link>
		<dc:creator>Daniel Lemire</dc:creator>
		<pubDate>Wed, 03 Dec 2008 17:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://anyall.org/blog/?p=356#comment-870</guid>
		<description><![CDATA[I thought you were after an windowed variance.

If you are ever interested, you can compute the windowed max-min in constant time, irrespective of the window size! This is not entirely trivial, by the way. See my code:

http://code.google.com/p/maxminfilters/]]></description>
		<content:encoded><![CDATA[<p>I thought you were after an windowed variance.</p>
<p>If you are ever interested, you can compute the windowed max-min in constant time, irrespective of the window size! This is not entirely trivial, by the way. See my code:</p>
<p><a href="http://code.google.com/p/maxminfilters/" rel="nofollow">http://code.google.com/p/maxminfilters/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brendano</title>
		<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/#comment-824</link>
		<dc:creator>brendano</dc:creator>
		<pubDate>Sun, 30 Nov 2008 20:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://anyall.org/blog/?p=356#comment-824</guid>
		<description><![CDATA[could use a python for loop, but it&#039;s slower than having numpy do an array operation because it&#039;s in C :)

i guess figuring out how to push array operation into low-level libraries is a step simpler than matrix operations in low-level libraries...]]></description>
		<content:encoded><![CDATA[<p>could use a python for loop, but it&#8217;s slower than having numpy do an array operation because it&#8217;s in C :)</p>
<p>i guess figuring out how to push array operation into low-level libraries is a step simpler than matrix operations in low-level libraries&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://brenocon.com/blog/2008/11/calculating-running-variance-in-python-and-c/#comment-819</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sun, 30 Nov 2008 08:06:50 +0000</pubDate>
		<guid isPermaLink="false">http://anyall.org/blog/?p=356#comment-819</guid>
		<description><![CDATA[Thanks for the plug but BLAS is pretty irrelevant here.  Any decent array library will support a fold opration to give you the result with a constant amount of memory.  

Also, in python, couldn&#039;t you just use a for loop?]]></description>
		<content:encoded><![CDATA[<p>Thanks for the plug but BLAS is pretty irrelevant here.  Any decent array library will support a fold opration to give you the result with a constant amount of memory.  </p>
<p>Also, in python, couldn&#8217;t you just use a for loop?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
