<?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: Computing All Shortest Paths in Python</title>
	<atom:link href="http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/</link>
	<description>“We can only see a short distance ahead, but we can see plenty there that needs to be done.&#34;</description>
	<lastBuildDate>Sun, 15 Aug 2010 15:37:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: chris</title>
		<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/#comment-268</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 07 Apr 2010 14:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.depthfirstsearch.net/blog/?p=1744#comment-268</guid>
		<description>do you have the full set of code? like an example beginning to end?</description>
		<content:encoded><![CDATA[<p>do you have the full set of code? like an example beginning to end?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vin</title>
		<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/#comment-267</link>
		<dc:creator>Vin</dc:creator>
		<pubDate>Tue, 19 Jan 2010 23:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.depthfirstsearch.net/blog/?p=1744#comment-267</guid>
		<description>We switched to repmat because it made the code run an order of magnitude faster on the MATLAB at the time. The problem with outer products is that it replicates the given vector by repeatedly performing floating-point multiplication by 1, as opposed to simply making copies of the entries.

cheers
Vin</description>
		<content:encoded><![CDATA[<p>We switched to repmat because it made the code run an order of magnitude faster on the MATLAB at the time. The problem with outer products is that it replicates the given vector by repeatedly performing floating-point multiplication by 1, as opposed to simply making copies of the entries.</p>
<p>cheers<br />
Vin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: depth first search » Computing All Shortest Paths in Matlab</title>
		<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/#comment-266</link>
		<dc:creator>depth first search » Computing All Shortest Paths in Matlab</dc:creator>
		<pubDate>Thu, 10 Dec 2009 02:42:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.depthfirstsearch.net/blog/?p=1744#comment-266</guid>
		<description>[...] compared two Python implementations for computing shortest paths in a previous post. This was all inspired by some Matlab code for computing Isomap that contained the following [...]</description>
		<content:encoded><![CDATA[<p>[...] compared two Python implementations for computing shortest paths in a previous post. This was all inspired by some Matlab code for computing Isomap that contained the following [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JS</title>
		<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/#comment-265</link>
		<dc:creator>JS</dc:creator>
		<pubDate>Fri, 04 Dec 2009 18:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.depthfirstsearch.net/blog/?p=1744#comment-265</guid>
		<description>This has all sorts of real world applications! What you describe, however, seems like a shortest path problem of a slightly different sort. You want shortest paths that are constrained to include certain way points (the locations of the components of the order). The algorithm above computes the shortest paths between any two points, not any five, ten, or more points. What you describe seems closer to another famous (and much harder!) problem known as the traveling salesman problem: http://en.wikipedia.org/wiki/Travelling_salesman_problem.</description>
		<content:encoded><![CDATA[<p>This has all sorts of real world applications! What you describe, however, seems like a shortest path problem of a slightly different sort. You want shortest paths that are constrained to include certain way points (the locations of the components of the order). The algorithm above computes the shortest paths between any two points, not any five, ten, or more points. What you describe seems closer to another famous (and much harder!) problem known as the traveling salesman problem: <a href="http://en.wikipedia.org/wiki/Travelling_salesman_problem" rel="nofollow">http://en.wikipedia.org/wiki/Travelling_salesman_problem</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.depthfirstsearch.net/blog/2009/12/03/computing-all-shortest-paths-in-python/#comment-264</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Fri, 04 Dec 2009 17:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.depthfirstsearch.net/blog/?p=1744#comment-264</guid>
		<description>I wonder, does this have real world applications? For instance, shortest path would be very helpful in a warehouse/distribution center setting. It would be highly beneficial to be able to determine the shortest route through a warehouse when filling a multiple item order.</description>
		<content:encoded><![CDATA[<p>I wonder, does this have real world applications? For instance, shortest path would be very helpful in a warehouse/distribution center setting. It would be highly beneficial to be able to determine the shortest route through a warehouse when filling a multiple item order.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
