<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990</link>
    <title>MATLAB Central Newsreader - Interpolation of matrix</title>
    <description>Feed for thread: Interpolation of matrix</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Thu, 08 Nov 2007 14:30:22 -0500</pubDate>
      <title>Interpolation of matrix</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990#400350</link>
      <author>Ben</author>
      <description>Hi there,&lt;br&gt;
&lt;br&gt;
I'm trying to perform some operations on a matrix - I have a 20x20 &lt;br&gt;
matrix that I've got to remove some rows from the top, and re-generate &lt;br&gt;
lines at the bottom to leave the matrix the same size as it was.&lt;br&gt;
&lt;br&gt;
So, say I have a 10x10 matrix, I remove the top row. What I now want to &lt;br&gt;
do is generate a row between the row at the bottom, and the one above &lt;br&gt;
it, that I can put in to keep it 10x10.&lt;br&gt;
&lt;br&gt;
I've looked at interp2, and it sort of seems to do what I want, e.g &lt;br&gt;
running interp2(Matrix) gives me a 19x19 matrix with an interpolated row &lt;br&gt;
between each. Is there any way to point interp2 at a matrix, with row &lt;br&gt;
vector 9, and get it to return a 1x10 matrix containing the interpolated &lt;br&gt;
row between row vectors 9 and 10, that I can just add to the first matrix?&lt;br&gt;
&lt;br&gt;
I believe interp2 can sort-of do this, using Xi and Yi, but that appears &lt;br&gt;
to be more related to generating an interpolated value from two data &lt;br&gt;
points, not two rows?&lt;br&gt;
&lt;br&gt;
Anyone have any advice?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Ben</description>
    </item>
    <item>
      <pubDate>Thu, 08 Nov 2007 21:04:18 -0500</pubDate>
      <title>Re: Interpolation of matrix</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990#400414</link>
      <author>PB</author>
      <description>Den Thu, 08 Nov 2007 14:30:22 +0000 skrev Ben:&lt;br&gt;
&lt;br&gt;
&amp;gt; Hi there,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm trying to perform some operations on a matrix - I have a 20x20&lt;br&gt;
&amp;gt; matrix that I've got to remove some rows from the top, and re-generate&lt;br&gt;
&amp;gt; lines at the bottom to leave the matrix the same size as it was.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; So, say I have a 10x10 matrix, I remove the top row. What I now want to&lt;br&gt;
&amp;gt; do is generate a row between the row at the bottom, and the one above&lt;br&gt;
&amp;gt; it, that I can put in to keep it 10x10.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I've looked at interp2, and it sort of seems to do what I want, e.g&lt;br&gt;
&amp;gt; running interp2(Matrix) gives me a 19x19 matrix with an interpolated row&lt;br&gt;
&amp;gt; between each. Is there any way to point interp2 at a matrix, with row&lt;br&gt;
&amp;gt; vector 9, and get it to return a 1x10 matrix containing the interpolated&lt;br&gt;
&amp;gt; row between row vectors 9 and 10, that I can just add to the first&lt;br&gt;
&amp;gt; matrix?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I believe interp2 can sort-of do this, using Xi and Yi, but that appears&lt;br&gt;
&amp;gt; to be more related to generating an interpolated value from two data&lt;br&gt;
&amp;gt; points, not two rows?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Anyone have any advice?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Ben&lt;br&gt;
&lt;br&gt;
Does this help?&lt;br&gt;
&lt;br&gt;
a=magic(3);&lt;br&gt;
a(:,3)=[]   % remove last row&lt;br&gt;
ix=1:0.5:2;&lt;br&gt;
[xi,yi]=meshgrid(ix)&lt;br&gt;
y=interp2(a,xi,yi)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
/PB</description>
    </item>
    <item>
      <pubDate>Fri, 09 Nov 2007 10:45:38 -0500</pubDate>
      <title>Re: Interpolation of matrix</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990#400516</link>
      <author>Ben</author>
      <description>PB wrote:&lt;br&gt;
&amp;gt; Den Thu, 08 Nov 2007 14:30:22 +0000 skrev Ben:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt;&amp;gt; Hi there,&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; I'm trying to perform some operations on a matrix - I have a 20x20&lt;br&gt;
&amp;gt;&amp;gt; matrix that I've got to remove some rows from the top, and re-generate&lt;br&gt;
&amp;gt;&amp;gt; lines at the bottom to leave the matrix the same size as it was.&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; So, say I have a 10x10 matrix, I remove the top row. What I now want to&lt;br&gt;
&amp;gt;&amp;gt; do is generate a row between the row at the bottom, and the one above&lt;br&gt;
&amp;gt;&amp;gt; it, that I can put in to keep it 10x10.&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; I've looked at interp2, and it sort of seems to do what I want, e.g&lt;br&gt;
&amp;gt;&amp;gt; running interp2(Matrix) gives me a 19x19 matrix with an interpolated row&lt;br&gt;
&amp;gt;&amp;gt; between each. Is there any way to point interp2 at a matrix, with row&lt;br&gt;
&amp;gt;&amp;gt; vector 9, and get it to return a 1x10 matrix containing the interpolated&lt;br&gt;
&amp;gt;&amp;gt; row between row vectors 9 and 10, that I can just add to the first&lt;br&gt;
&amp;gt;&amp;gt; matrix?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; I believe interp2 can sort-of do this, using Xi and Yi, but that appears&lt;br&gt;
&amp;gt;&amp;gt; to be more related to generating an interpolated value from two data&lt;br&gt;
&amp;gt;&amp;gt; points, not two rows?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Anyone have any advice?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Thanks,&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; Ben&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Does this help?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; a=magic(3);&lt;br&gt;
&amp;gt; a(:,3)=[]   % remove last row&lt;br&gt;
&amp;gt; ix=1:0.5:2;&lt;br&gt;
&amp;gt; [xi,yi]=meshgrid(ix)&lt;br&gt;
&amp;gt; y=interp2(a,xi,yi)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; /PB&lt;br&gt;
&lt;br&gt;
Thanks, but your a= line actually removes the last column and not the &lt;br&gt;
last row...&lt;br&gt;
&lt;br&gt;
I changed it to remove the last column, but the final result bears no &lt;br&gt;
resemblance to the original square I'm not sure how the meshgrid of ix &lt;br&gt;
interacts with the interpolation, which is what I think is causing the &lt;br&gt;
wrong results as I changed it from column to row...?</description>
    </item>
    <item>
      <pubDate>Fri, 09 Nov 2007 11:28:08 -0500</pubDate>
      <title>Re: Interpolation of matrix</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990#400520</link>
      <author>John D'Errico</author>
      <description>Ben &amp;lt;bw.games_n0spam@gmail.nospam.com&amp;gt; wrote in message &amp;lt;mTWYi.&lt;br&gt;
10525$ib1.5678@newsfe3-win.ntli.net&amp;gt;...&lt;br&gt;
&amp;gt; PB wrote:&lt;br&gt;
&amp;gt; &amp;gt; Den Thu, 08 Nov 2007 14:30:22 +0000 skrev Ben:&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; Hi there,&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; I'm trying to perform some operations on a matrix - I have a 20x20&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; matrix that I've got to remove some rows from the top, and re-&lt;br&gt;
generate&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; lines at the bottom to leave the matrix the same size as it was.&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; So, say I have a 10x10 matrix, I remove the top row. What I now want &lt;br&gt;
to&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; do is generate a row between the row at the bottom, and the one above&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; it, that I can put in to keep it 10x10.&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; I've looked at interp2, and it sort of seems to do what I want, e.g&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; running interp2(Matrix) gives me a 19x19 matrix with an interpolated &lt;br&gt;
row&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; between each. Is there any way to point interp2 at a matrix, with row&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; vector 9, and get it to return a 1x10 matrix containing the interpolated&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; row between row vectors 9 and 10, that I can just add to the first&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; matrix?&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; I believe interp2 can sort-of do this, using Xi and Yi, but that appears&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; to be more related to generating an interpolated value from two data&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; points, not two rows?&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; Anyone have any advice?&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; Thanks,&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; Ben&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Does this help?&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; a=magic(3);&lt;br&gt;
&amp;gt; &amp;gt; a(:,3)=[]   % remove last row&lt;br&gt;
&amp;gt; &amp;gt; ix=1:0.5:2;&lt;br&gt;
&amp;gt; &amp;gt; [xi,yi]=meshgrid(ix)&lt;br&gt;
&amp;gt; &amp;gt; y=interp2(a,xi,yi)&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; /PB&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks, but your a= line actually removes the last column and not the &lt;br&gt;
&amp;gt; last row...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I changed it to remove the last column, but the final result bears no &lt;br&gt;
&amp;gt; resemblance to the original square I'm not sure how the meshgrid of ix &lt;br&gt;
&amp;gt; interacts with the interpolation, which is what I think is causing the &lt;br&gt;
&amp;gt; wrong results as I changed it from column to row...?&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
When you remove information by deleting a row&lt;br&gt;
from a magic square, an interpolant will not know&lt;br&gt;
that the square was a magic one. Also, PB made&lt;br&gt;
a mistake in his example.&lt;br&gt;
&lt;br&gt;
a=magic(3);&lt;br&gt;
a(3,:)=[]; % remove last row&lt;br&gt;
ix=1:0.5:2;&lt;br&gt;
iy = 1:3;&lt;br&gt;
[xi,yi]=meshgrid(ix,iy);&lt;br&gt;
y=interp2(a,yi,xi)';&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
a =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;8     1     6&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3     5     7&lt;br&gt;
&lt;br&gt;
y =&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;8            1            6&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5.5            3          6.5&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3            5            7&lt;br&gt;
&lt;br&gt;
Note the transpose at the end!&lt;br&gt;
&lt;br&gt;
HOWEVER. dropping the last row of an array,&lt;br&gt;
then inserting a new one internally to make&lt;br&gt;
up for it by interpolation will not generally&lt;br&gt;
make sense to me. But its your data.&lt;br&gt;
&lt;br&gt;
HTH,&lt;br&gt;
John</description>
    </item>
    <item>
      <pubDate>Fri, 09 Nov 2007 16:35:17 -0500</pubDate>
      <title>Re: Interpolation of matrix</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/158990#400572</link>
      <author>Ben</author>
      <description>John D'Errico wrote:&lt;br&gt;
&amp;gt; Ben &amp;lt;bw.games_n0spam@gmail.nospam.com&amp;gt; wrote in message &amp;lt;mTWYi.&lt;br&gt;
&amp;gt; 10525$ib1.5678@newsfe3-win.ntli.net&amp;gt;...&lt;br&gt;
&amp;gt;&amp;gt; PB wrote:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Den Thu, 08 Nov 2007 14:30:22 +0000 skrev Ben:&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Hi there,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; I'm trying to perform some operations on a matrix - I have a 20x20&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; matrix that I've got to remove some rows from the top, and re-&lt;br&gt;
&amp;gt; generate&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; lines at the bottom to leave the matrix the same size as it was.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; So, say I have a 10x10 matrix, I remove the top row. What I now want &lt;br&gt;
&amp;gt; to&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; do is generate a row between the row at the bottom, and the one above&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; it, that I can put in to keep it 10x10.&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; I've looked at interp2, and it sort of seems to do what I want, e.g&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; running interp2(Matrix) gives me a 19x19 matrix with an interpolated &lt;br&gt;
&amp;gt; row&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; between each. Is there any way to point interp2 at a matrix, with row&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; vector 9, and get it to return a 1x10 matrix containing the interpolated&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; row between row vectors 9 and 10, that I can just add to the first&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; matrix?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; I believe interp2 can sort-of do this, using Xi and Yi, but that appears&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; to be more related to generating an interpolated value from two data&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; points, not two rows?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Anyone have any advice?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thanks,&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&amp;gt; Ben&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; Does this help?&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; a=magic(3);&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; a(:,3)=[]   % remove last row&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; ix=1:0.5:2;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; [xi,yi]=meshgrid(ix)&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; y=interp2(a,xi,yi)&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt;&amp;gt; /PB&lt;br&gt;
&amp;gt;&amp;gt; Thanks, but your a= line actually removes the last column and not the &lt;br&gt;
&amp;gt;&amp;gt; last row...&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt;&amp;gt; I changed it to remove the last column, but the final result bears no &lt;br&gt;
&amp;gt;&amp;gt; resemblance to the original square I'm not sure how the meshgrid of ix &lt;br&gt;
&amp;gt;&amp;gt; interacts with the interpolation, which is what I think is causing the &lt;br&gt;
&amp;gt;&amp;gt; wrong results as I changed it from column to row...?&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; When you remove information by deleting a row&lt;br&gt;
&amp;gt; from a magic square, an interpolant will not know&lt;br&gt;
&amp;gt; that the square was a magic one. Also, PB made&lt;br&gt;
&amp;gt; a mistake in his example.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; a=magic(3);&lt;br&gt;
&amp;gt; a(3,:)=[]; % remove last row&lt;br&gt;
&amp;gt; ix=1:0.5:2;&lt;br&gt;
&amp;gt; iy = 1:3;&lt;br&gt;
&amp;gt; [xi,yi]=meshgrid(ix,iy);&lt;br&gt;
&amp;gt; y=interp2(a,yi,xi)';&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; a =&lt;br&gt;
&amp;gt;      8     1     6&lt;br&gt;
&amp;gt;      3     5     7&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y =&lt;br&gt;
&amp;gt;             8            1            6&lt;br&gt;
&amp;gt;           5.5            3          6.5&lt;br&gt;
&amp;gt;             3            5            7&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Note the transpose at the end!&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; HOWEVER. dropping the last row of an array,&lt;br&gt;
&amp;gt; then inserting a new one internally to make&lt;br&gt;
&amp;gt; up for it by interpolation will not generally&lt;br&gt;
&amp;gt; make sense to me. But its your data.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; HTH,&lt;br&gt;
&amp;gt; John&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks for the feedback.&lt;br&gt;
&lt;br&gt;
I think I was a bit unclear, sorry.&lt;br&gt;
&lt;br&gt;
What I want to do, is remove the top row of an array.&lt;br&gt;
Then I want to interpolate at the bottom of the array and create an &lt;br&gt;
interpolated row between the last row, and the row previous to that, to &lt;br&gt;
leave the array the same size as it was before, and the data is roughly &lt;br&gt;
the same.&lt;br&gt;
This has the effect of shifting the previous centre row of the array up &lt;br&gt;
by one, without dramatically affecting my data, which is what I want.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Any ideas?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
&lt;br&gt;
Ben</description>
    </item>
  </channel>
</rss>

