<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Robotics Research</title>
	<link>http://www.damith.org/research/blog</link>
	<description>Research n stuff on robotics, SLAM and computer vision</description>
	<pubDate>Thu, 21 May 2009 01:52:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>TH Live</title>
		<link>http://www.damith.org/research/blog/?p=66</link>
		<comments>http://www.damith.org/research/blog/?p=66#comments</comments>
		<pubDate>Thu, 21 May 2009 01:51:21 +0000</pubDate>
		<dc:creator>research</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.damith.org/research/blog/?p=66</guid>
		<description><![CDATA[&#60;object id=&#34;utv_o_733752&#34; height=&#34;326&#34; width=&#34;400&#34; classid=&#34;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&#34;&#62;&#60;param value=&#34;http://www.ustream.tv/flash/live/733752&#34; name=&#34;movie&#34; /&#62;&#60;param value=&#34;true&#34; name=&#34;allowFullScreen&#34; /&#62;&#60;param value=&#34;always&#34; name=&#34;allowScriptAccess&#34; /&#62;&#60;param value=&#34;transparent&#34; name=&#34;wmode&#34; /&#62;&#60;param value=&#34;viewcount=true&#38;amp;autoplay=false&#34; name=&#34;flashvars&#34; /&#62;&#60;embed name=&#34;utv_e_733752&#34; id=&#34;utv_e_733752&#34; flashvars=&#34;viewcount=true&#38;amp;autoplay=false&#34; height=&#34;326&#34; width=&#34;400&#34; allowfullscreen=&#34;true&#34; allowscriptaccess=&#34;always&#34; wmode=&#34;transparent&#34; xsrc=&#34;http://www.ustream.tv/flash/live/733752&#34; type=&#34;application/x-shockwave-flash&#34; /&#62;&#60;/object&#62;

]]></description>
			<content:encoded><![CDATA[<p>&lt;object id=&quot;utv_o_733752&quot; height=&quot;326&quot; width=&quot;400&quot; classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;&gt;&lt;param value=&quot;http://www.ustream.tv/flash/live/733752&quot; name=&quot;movie&quot; /&gt;&lt;param value=&quot;true&quot; name=&quot;allowFullScreen&quot; /&gt;&lt;param value=&quot;always&quot; name=&quot;allowScriptAccess&quot; /&gt;&lt;param value=&quot;transparent&quot; name=&quot;wmode&quot; /&gt;&lt;param value=&quot;viewcount=true&amp;amp;autoplay=false&quot; name=&quot;flashvars&quot; /&gt;&lt;embed name=&quot;utv_e_733752&quot; id=&quot;utv_e_733752&quot; flashvars=&quot;viewcount=true&amp;amp;autoplay=false&quot; height=&quot;326&quot; width=&quot;400&quot; allowfullscreen=&quot;true&quot; allowscriptaccess=&quot;always&quot; wmode=&quot;transparent&quot; xsrc=&quot;http://www.ustream.tv/flash/live/733752&quot; type=&quot;application/x-shockwave-flash&quot; /&gt;&lt;/object&gt;
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.damith.org/research/blog/?feed=rss2&amp;p=66</wfw:commentRSS>
		</item>
		<item>
		<title>SVN on my server</title>
		<link>http://www.damith.org/research/blog/?p=65</link>
		<comments>http://www.damith.org/research/blog/?p=65#comments</comments>
		<pubDate>Mon, 28 Jul 2008 03:55:45 +0000</pubDate>
		<dc:creator>research</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.damith.org/research/blog/?p=65</guid>
		<description><![CDATA[cd ~mkdir srccd ~/srcwget http://www.gtlib.gatech.edu/pub/apache/apr/apr-util-1.2.12.tar.gzwget http://www.gtlib.gatech.edu/pub/apache/apr/apr-1.2.12.tar.gzwget http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gzwget http://www.webdav.org/neon/neon-0.28.0.tar.gztar -xzf apr-util-1.2.12.tar.gztar -xzf apr-1.2.12.tar.gztar -xzf subversion-1.4.6.tar.gztar -xzf neon-0.28.0.tar.gzcd ~/src/apr-1.2.12./configure &#8211;prefix=$HOME LDFLAGS=&#34;-L/lib64&#34;makemake installcd ~/src/apr-util-1.2.12./configure &#8211;prefix=$HOME &#8211;with-apr=$HOME LDFLAGS=&#34;-L/lib64&#34;makemake installcd ~/src/neon-0.28.0./configure &#8211;enable-shared &#8211;prefix=$HOME LDFLAGS=&#34;-L/lib64&#34;makemake installcd ~/src/subversion-1.4.6./configure &#8211;prefix=$HOME &#8211;without-berkeley-db &#8211;with-zlib &#8211;with-ssl LDFLAGS=&#34;-L/lib64&#34;makemake install
&#160;
cdmkdir svncd svn
Then we create a svn repository for our project &#39;myproject&#39;
svnadmin create --fs-type fsfs myprojectchmod -R 755 myproject
]]></description>
			<content:encoded><![CDATA[<p>cd ~<br />mkdir src<br />cd ~/src<br />wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-util-1.2.12.tar.gz<br />wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-1.2.12.tar.gz<br />wget http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz<br />wget http://www.webdav.org/neon/neon-0.28.0.tar.gz<br />tar -xzf apr-util-1.2.12.tar.gz<br />tar -xzf apr-1.2.12.tar.gz<br />tar -xzf subversion-1.4.6.tar.gz<br />tar -xzf neon-0.28.0.tar.gz<br />cd ~/src/apr-1.2.12<br />./configure &#8211;prefix=$HOME LDFLAGS=&quot;-L/lib64&quot;<br />make<br />make install<br />cd ~/src/apr-util-1.2.12<br />./configure &#8211;prefix=$HOME &#8211;with-apr=$HOME LDFLAGS=&quot;-L/lib64&quot;<br />make<br />make install<br />cd ~/src/neon-0.28.0<br />./configure &#8211;enable-shared &#8211;prefix=$HOME LDFLAGS=&quot;-L/lib64&quot;<br />make<br />make install<br />cd ~/src/subversion-1.4.6<br />./configure &#8211;prefix=$HOME &#8211;without-berkeley-db &#8211;with-zlib &#8211;with-ssl LDFLAGS=&quot;<font>-L/lib64</font>&quot;<br />make<br />make install</p>
<p>&nbsp;</p>
<pre>cdmkdir svncd svn</pre>
<p>Then we create a svn repository for our project &#39;myproject&#39;</p>
<pre>svnadmin create --fs-type fsfs myprojectchmod -R 755 myproject</pre>
]]></content:encoded>
			<wfw:commentRSS>http://www.damith.org/research/blog/?feed=rss2&amp;p=65</wfw:commentRSS>
		</item>
		<item>
		<title>Viewing Sparse Matrices Graphically</title>
		<link>http://www.damith.org/research/blog/?p=60</link>
		<comments>http://www.damith.org/research/blog/?p=60#comments</comments>
		<pubDate>Tue, 13 Mar 2007 04:13:05 +0000</pubDate>
		<dc:creator>research</dc:creator>
		
	<category>General</category>
		<guid isPermaLink="false">http://www.damith.org/research/blog/?p=60</guid>
		<description><![CDATA[It is often useful to use a graphical format to view the distribution of the nonzero elements within a sparse matrix. The MATLAB spy function produces a template view of the sparsity structure, where each point on the graph represents the location of a nonzero array element.
For example,
spy(west0479) 
]]></description>
			<content:encoded><![CDATA[<p>It is often useful to use a graphical format to view the distribution of the nonzero elements within a sparse matrix. The MATLAB spy function produces a template view of the sparsity structure, where each point on the graph represents the location of a nonzero array element.</p>
<p>For example,</p>
<pre class="programlisting">spy(west0479) </pre>
]]></content:encoded>
			<wfw:commentRSS>http://www.damith.org/research/blog/?feed=rss2&amp;p=60</wfw:commentRSS>
		</item>
	</channel>
</rss>
