<?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: Another Copenhagen Synthesis Report Error?</title>
	<atom:link href="http://landshape.org/enm/another-copenhagen-synthesis-report-error/feed/" rel="self" type="application/rss+xml" />
	<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/</link>
	<description>The Power of Numeracy</description>
	<lastBuildDate>Wed, 16 May 2012 18:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: http://test.com</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1515</link>
		<dc:creator>http://test.com</dc:creator>
		<pubDate>Mon, 15 Feb 2010 02:44:40 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1515</guid>
		<description>&lt;strong&gt;test...&lt;/strong&gt;

phVPdt0  &#124; test ...</description>
		<content:encoded><![CDATA[<p><strong>test&#8230;</strong></p>
<p>phVPdt0  | test &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack &#38; Jones</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1514</link>
		<dc:creator>Jack &#38; Jones</dc:creator>
		<pubDate>Sun, 06 Sep 2009 13:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1514</guid>
		<description>Great post</description>
		<content:encoded><![CDATA[<p>Great post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack &#38; Jones</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1516</link>
		<dc:creator>Jack &#38; Jones</dc:creator>
		<pubDate>Sun, 06 Sep 2009 13:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1516</guid>
		<description>Great post</description>
		<content:encoded><![CDATA[<p>Great post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack &#38; Jones</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-11748</link>
		<dc:creator>Jack &#38; Jones</dc:creator>
		<pubDate>Sun, 06 Sep 2009 13:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-11748</guid>
		<description>Great post</description>
		<content:encoded><![CDATA[<p>Great post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean S</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1513</link>
		<dc:creator>Jean S</dc:creator>
		<pubDate>Wed, 01 Jul 2009 15:49:59 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1513</guid>
		<description>Lucia, yes, it&#039;s just a straight line. Here&#039;s how it is exactly done in the code (this is for the &quot;right&quot; end):pright=polyfit(idx,x(idx),1);This fits (returns a and b) a 1st order polynomial (a straight line) y=a*idx+b for M last data points in the series x.ThenpaddedX=[polyval(pleft,(-(M-1):0)&#039;);x;polyval(pright,n+(1:M)&#039;)];Appends data x (to right) with values y from the equationevaluated at points (n is the last index) n+1,...,n+M. Of course, it would be enough to append only M-1 values as the filter length is 2M-1. The last thing can be seen from how the filter is obtained:tfilt=conv(E,flipud(E))/M(later normalized to sum to unity). The length of E (&quot;maximal eigenvector&quot; from ssa) is M, so the convolution between E and &quot;flipped&quot; (i.e. reversed) E produces a 2M-1 length vector.</description>
		<content:encoded><![CDATA[<p>Lucia, yes, it&#039;s just a straight line. Here&#039;s how it is exactly done in the code (this is for the &#8220;right&#8221; end):pright=polyfit(idx,x(idx),1);This fits (returns a and b) a 1st order polynomial (a straight line) y=a*idx+b for M last data points in the series x.ThenpaddedX=[polyval(pleft,(-(M-1):0)&#039;);x;polyval(pright,n+(1:M)&#039;)];Appends data x (to right) with values y from the equationevaluated at points (n is the last index) n+1,&#8230;,n+M. Of course, it would be enough to append only M-1 values as the filter length is 2M-1. The last thing can be seen from how the filter is obtained:tfilt=conv(E,flipud(E))/M(later normalized to sum to unity). The length of E (&#8220;maximal eigenvector&#8221; from ssa) is M, so the convolution between E and &#8220;flipped&#8221; (i.e. reversed) E produces a 2M-1 length vector.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jean S</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-11374</link>
		<dc:creator>Jean S</dc:creator>
		<pubDate>Wed, 01 Jul 2009 15:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-11374</guid>
		<description>Lucia, yes, it&#039;s just a straight line. 

Here&#039;s how it is exactly done in the code (this is for the &quot;right&quot; end):
pright=polyfit(idx,x(idx),1);
This fits (returns a and b) a 1st order polynomial (a straight line) 
y=a*idx+b for M last data points in the series x.
Then
paddedX=[polyval(pleft,(-(M-1):0)&#039;);x;polyval(pright,n+(1:M)&#039;)];
Appends data x (to right) with values y from the equation
evaluated at points (n is the last index) n+1,...,n+M. 
Of course, it would be enough to append only M-1 values as the filter length is 2M-1. The last thing can be seen from how the filter is obtained:
tfilt=conv(E,flipud(E))/M
(later normalized to sum to unity). The length of E (&quot;maximal eigenvector&quot; from ssa) is M, so the convolution between E and &quot;flipped&quot; (i.e. reversed) E produces a 2M-1 length vector.


</description>
		<content:encoded><![CDATA[<p>Lucia, yes, it&#8217;s just a straight line. </p>
<p>Here&#8217;s how it is exactly done in the code (this is for the &#8220;right&#8221; end):<br />
pright=polyfit(idx,x(idx),1);<br />
This fits (returns a and b) a 1st order polynomial (a straight line)<br />
y=a*idx+b for M last data points in the series x.<br />
Then<br />
paddedX=[polyval(pleft,(-(M-1):0)');x;polyval(pright,n+(1:M)')];<br />
Appends data x (to right) with values y from the equation<br />
evaluated at points (n is the last index) n+1,&#8230;,n+M.<br />
Of course, it would be enough to append only M-1 values as the filter length is 2M-1. The last thing can be seen from how the filter is obtained:<br />
tfilt=conv(E,flipud(E))/M<br />
(later normalized to sum to unity). The length of E (&#8220;maximal eigenvector&#8221; from ssa) is M, so the convolution between E and &#8220;flipped&#8221; (i.e. reversed) E produces a 2M-1 length vector.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lucia</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1512</link>
		<dc:creator>lucia</dc:creator>
		<pubDate>Wed, 01 Jul 2009 14:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1512</guid>
		<description>JeanS-- Stefan edited out the link to my post where we discuss the fishy odor surrounding his document? Heh.  (I only edit out links to porn etc.)David S--Is the Grinstead extension just a plain straight line?  No &#039;noise&#039;?</description>
		<content:encoded><![CDATA[<p>JeanS&#8211; Stefan edited out the link to my post where we discuss the fishy odor surrounding his document? Heh.  (I only edit out links to porn etc.)David S&#8211;Is the Grinstead extension just a plain straight line?  No &#039;noise&#039;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lucia</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-11373</link>
		<dc:creator>lucia</dc:creator>
		<pubDate>Wed, 01 Jul 2009 14:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-11373</guid>
		<description>JeanS-- Stefan edited out the link to my post where we discuss the fishy odor surrounding his document? Heh.  (I only edit out links to porn etc.)

David S--
Is the Grinstead extension just a plain straight line?  No &#039;noise&#039;? 

</description>
		<content:encoded><![CDATA[<p>JeanS&#8211; Stefan edited out the link to my post where we discuss the fishy odor surrounding his document? Heh.  (I only edit out links to porn etc.)</p>
<p>David S&#8211;<br />
Is the Grinstead extension just a plain straight line?  No &#8216;noise&#8217;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cohenite</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-1511</link>
		<dc:creator>cohenite</dc:creator>
		<pubDate>Mon, 29 Jun 2009 12:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-1511</guid>
		<description>Did I say Will Steffen? I&#039;m seeing that guy behind the bushes; time for a scotch.</description>
		<content:encoded><![CDATA[<p>Did I say Will Steffen? I&#039;m seeing that guy behind the bushes; time for a scotch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cohenite</title>
		<link>http://landshape.org/enm/another-copenhagen-synthesis-report-error/#comment-11359</link>
		<dc:creator>cohenite</dc:creator>
		<pubDate>Mon, 29 Jun 2009 12:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://landshape.org/enm/?p=2459#comment-11359</guid>
		<description>Did I say Will Steffen? I&#039;m seeing that guy behind the bushes; time for a scotch.</description>
		<content:encoded><![CDATA[<p>Did I say Will Steffen? I&#8217;m seeing that guy behind the bushes; time for a scotch.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

