<?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 for Syntagmatic.net</title>
	<atom:link href="http://www.syntagmatic.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.syntagmatic.net</link>
	<description>now reading: Tropic of Cancer</description>
	<lastBuildDate>Tue, 20 Apr 2010 19:31:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on jQuery Rollover Nav Bar by adam wadsworth</title>
		<link>http://www.syntagmatic.net/jquery-rollover-nav-bar/comment-page-1/#comment-118</link>
		<dc:creator>adam wadsworth</dc:creator>
		<pubDate>Tue, 20 Apr 2010 19:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=63#comment-118</guid>
		<description>Hey,

Im using this navigation style on &#039;&#039; http://demo.wordpressheaven.co.uk/newdecademuzik/ &#039;&#039; but it isnt working on ie have you got any tips on this ?

Cheers 

Adam @ www.WordpressHeaven.co.uk</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>Im using this navigation style on &#8221; <a href="http://demo.wordpressheaven.co.uk/newdecademuzik/" rel="nofollow">http://demo.wordpressheaven.co.uk/newdecademuzik/</a> &#8221; but it isnt working on ie have you got any tips on this ?</p>
<p>Cheers </p>
<p>Adam @ <a href="http://www.WordpressHeaven.co.uk" rel="nofollow">http://www.WordpressHeaven.co.uk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Rollover Nav Bar by Xcellence IT</title>
		<link>http://www.syntagmatic.net/jquery-rollover-nav-bar/comment-page-1/#comment-78</link>
		<dc:creator>Xcellence IT</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=63#comment-78</guid>
		<description>Great menu, I would like to try this in one of my current project...

Thanks</description>
		<content:encoded><![CDATA[<p>Great menu, I would like to try this in one of my current project&#8230;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Matrix Multiplication in Python by galia</title>
		<link>http://www.syntagmatic.net/matrix-multiplication-in-python/comment-page-1/#comment-69</link>
		<dc:creator>galia</dc:creator>
		<pubDate>Tue, 09 Feb 2010 00:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=3#comment-69</guid>
		<description>Thanks to author a blog, I actually saved a lot of time! I would go again!</description>
		<content:encoded><![CDATA[<p>Thanks to author a blog, I actually saved a lot of time! I would go again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Matrix Multiplication in Python by Kai</title>
		<link>http://www.syntagmatic.net/matrix-multiplication-in-python/comment-page-1/#comment-68</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Mon, 08 Feb 2010 09:36:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=3#comment-68</guid>
		<description>A new matrix is created.  For multiplication of matrices with dimension n*m and m*p, the new matrix will be dimension n*p:
&lt;blockquote&gt;new_matrix = zero(len(matrix1),len(matrix2[0]))&lt;/blockquote&gt;

These three lines set up a brute-force loop through all the matrix elements.   Wikipedia page has &lt;a href=&quot;http://en.wikipedia.org/wiki/Matrix_multiplication#Relationship_to_linear_transformations&quot; rel=&quot;nofollow&quot;&gt;decent examples&lt;/a&gt; of how this calculation is performed

&lt;blockquote&gt;for i in range(len(matrix1)):
for j in range(len(matrix2[0])):
for k in range(len(matrix2)):&lt;/blockquote&gt;

The next line performs the calculation for each new element.  It&#039;s tough to explain without lots of notation, but &lt;a href=&quot;http://people.hofstra.edu/Stefan_Waner/realWorld/tutorialsf1/frames3_2.html&quot; rel=&quot;nofollow&quot;&gt;this page&lt;/a&gt; does a good job of simple examples.  You&#039;ll see that elements in the new matrix are a summation of multiplication of corresponding elements in columns of the first matrix, and rows of the second matrix.  That&#039;s a really awful sentence, but I can&#039;t think of a simpler way to explain it.  The += lets each of these multiplications accumulate on the proper element.

&lt;blockquote&gt;new_matrix[i][j] += matrix1[i][k]*matrix2[k][j]&lt;/blockquote&gt;

The last line returns the new matrix, so it can be printed, stored as a variable, or whatever you like!


&lt;blockquote&gt;return show(new_matrix)&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>A new matrix is created.  For multiplication of matrices with dimension n*m and m*p, the new matrix will be dimension n*p:</p>
<blockquote><p>new_matrix = zero(len(matrix1),len(matrix2[0]))</p></blockquote>
<p>These three lines set up a brute-force loop through all the matrix elements.   Wikipedia page has <a href="http://en.wikipedia.org/wiki/Matrix_multiplication#Relationship_to_linear_transformations" rel="nofollow">decent examples</a> of how this calculation is performed</p>
<blockquote><p>for i in range(len(matrix1)):<br />
for j in range(len(matrix2[0])):<br />
for k in range(len(matrix2)):</p></blockquote>
<p>The next line performs the calculation for each new element.  It&#8217;s tough to explain without lots of notation, but <a href="http://people.hofstra.edu/Stefan_Waner/realWorld/tutorialsf1/frames3_2.html" rel="nofollow">this page</a> does a good job of simple examples.  You&#8217;ll see that elements in the new matrix are a summation of multiplication of corresponding elements in columns of the first matrix, and rows of the second matrix.  That&#8217;s a really awful sentence, but I can&#8217;t think of a simpler way to explain it.  The += lets each of these multiplications accumulate on the proper element.</p>
<blockquote><p>new_matrix[i][j] += matrix1[i][k]*matrix2[k][j]</p></blockquote>
<p>The last line returns the new matrix, so it can be printed, stored as a variable, or whatever you like!</p>
<blockquote><p>return show(new_matrix)</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Rollover Nav Bar by Keith</title>
		<link>http://www.syntagmatic.net/jquery-rollover-nav-bar/comment-page-1/#comment-60</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Thu, 14 Jan 2010 11:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=63#comment-60</guid>
		<description>You need to add position:relative to the containing div (nav_bar) to get this to work in IE6/7</description>
		<content:encoded><![CDATA[<p>You need to add position:relative to the containing div (nav_bar) to get this to work in IE6/7</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple Matrix Multiplication in Python by Sravya</title>
		<link>http://www.syntagmatic.net/matrix-multiplication-in-python/comment-page-1/#comment-59</link>
		<dc:creator>Sravya</dc:creator>
		<pubDate>Wed, 06 Jan 2010 16:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=3#comment-59</guid>
		<description>Hi. Can you please explain this part of the code in detail:


else:
        # Multiply if correct dimensions
        new_matrix = zero(len(matrix1),len(matrix2[0]))
        for i in range(len(matrix1)):
            for j in range(len(matrix2[0])):
                for k in range(len(matrix2)):
                    new_matrix[i][j] += matrix1[i][k]*matrix2[k][j]
        return show(new_matrix)

Thank you very much.</description>
		<content:encoded><![CDATA[<p>Hi. Can you please explain this part of the code in detail:</p>
<p>else:<br />
        # Multiply if correct dimensions<br />
        new_matrix = zero(len(matrix1),len(matrix2[0]))<br />
        for i in range(len(matrix1)):<br />
            for j in range(len(matrix2[0])):<br />
                for k in range(len(matrix2)):<br />
                    new_matrix[i][j] += matrix1[i][k]*matrix2[k][j]<br />
        return show(new_matrix)</p>
<p>Thank you very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Rollover Nav Bar by Jesper</title>
		<link>http://www.syntagmatic.net/jquery-rollover-nav-bar/comment-page-1/#comment-42</link>
		<dc:creator>Jesper</dc:creator>
		<pubDate>Wed, 04 Nov 2009 16:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.syntagmatic.net/?p=63#comment-42</guid>
		<description>Great menu, but it falls apart in IE6+7 :(

Thanks for sharing, though</description>
		<content:encoded><![CDATA[<p>Great menu, but it falls apart in IE6+7 <img src='http://www.syntagmatic.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Thanks for sharing, though</p>
]]></content:encoded>
	</item>
</channel>
</rss>

