<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470</link>
    <title>MATLAB Central Newsreader - Need advice on File I/O</title>
    <description>Feed for thread: Need advice on File I/O</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>Sat, 01 Sep 2007 00:02:26 -0400</pubDate>
      <title>Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390323</link>
      <author>G.A.M. </author>
      <description>I am working with delimited text files (mostly, but not&lt;br&gt;
always, comma separated or CSV).&lt;br&gt;
&lt;br&gt;
Reading and creating entire files isn't a problem. My&lt;br&gt;
problems start when I need to alter data in existing files.&lt;br&gt;
I could use some advice.&lt;br&gt;
&lt;br&gt;
Sometimes I will need to remove an entire line from a file.&lt;br&gt;
Sometimes I need to replace a single value (at any row,&lt;br&gt;
column location) without changing the rest of the file.&lt;br&gt;
&lt;br&gt;
After searching and reading everything I can find in the&lt;br&gt;
help, I am still undecided on how to go about this. I would&lt;br&gt;
appreciate some advice from experienced Matlab users.&lt;br&gt;
&lt;br&gt;
I simply can't see an easy way to modify my file data with&lt;br&gt;
the Matlab file I/O functions I see listed in help. &lt;br&gt;
&lt;br&gt;
(I'm working on Windows and my data is all ASCII. The&lt;br&gt;
delimiters and data organization in the files is not always&lt;br&gt;
uniform, so I often have to write code to analyze each&lt;br&gt;
character I read from a file and figure out where the data&lt;br&gt;
is that I want to change. However, I don't think there is&lt;br&gt;
anything really unusual about what I need to do.)</description>
    </item>
    <item>
      <pubDate>Sat, 01 Sep 2007 06:49:39 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390347</link>
      <author> Rune Allnor</author>
      <description>On 1 Sep, 02:02, &quot;G.A.M. &quot; &amp;lt;x0z...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; I am working with delimited text files (mostly, but not&lt;br&gt;
&amp;gt; always, comma separated or CSV).&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Reading and creating entire files isn't a problem. My&lt;br&gt;
&amp;gt; problems start when I need to alter data in existing files.&lt;br&gt;
&amp;gt; I could use some advice.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Sometimes I will need to remove an entire line from a file.&lt;br&gt;
&amp;gt; Sometimes I need to replace a single value (at any row,&lt;br&gt;
&amp;gt; column location) without changing the rest of the file.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; After searching and reading everything I can find in the&lt;br&gt;
&amp;gt; help, I am still undecided on how to go about this. I would&lt;br&gt;
&amp;gt; appreciate some advice from experienced Matlab users.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I simply can't see an easy way to modify my file data with&lt;br&gt;
&amp;gt; the Matlab file I/O functions I see listed in help.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; (I'm working on Windows and my data is all ASCII. The&lt;br&gt;
&amp;gt; delimiters and data organization in the files is not always&lt;br&gt;
&amp;gt; uniform, so I often have to write code to analyze each&lt;br&gt;
&amp;gt; character I read from a file and figure out where the data&lt;br&gt;
&amp;gt; is that I want to change. However, I don't think there is&lt;br&gt;
&amp;gt; anything really unusual about what I need to do.)&lt;br&gt;
&lt;br&gt;
Use regular expressions to parse your files to find the data&lt;br&gt;
you want. Use Walter's method #1, read the data from the source&lt;br&gt;
file and write the altered data set to the destination file.&lt;br&gt;
&lt;br&gt;
Rune</description>
    </item>
    <item>
      <pubDate>Sat, 01 Sep 2007 20:19:05 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390389</link>
      <author>G.A.M. </author>
      <description>&amp;nbsp;Rune Allnor &amp;lt;allnor@tele.ntnu.no&amp;gt; wrote in message&lt;br&gt;
&amp;lt;1188629379.871780.250890@w3g2000hsg.googlegroups.com&amp;gt;...&lt;br&gt;
&amp;gt; On 1 Sep, 02:02, &quot;G.A.M. &quot; &amp;lt;x0z...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt; I am working with delimited text files (mostly, but not&lt;br&gt;
&amp;gt; &amp;gt; always, comma separated or CSV).&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Reading and creating entire files isn't a problem. My&lt;br&gt;
&amp;gt; &amp;gt; problems start when I need to alter data in existing files.&lt;br&gt;
&amp;gt; &amp;gt; I could use some advice.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Sometimes I will need to remove an entire line from a file.&lt;br&gt;
&amp;gt; &amp;gt; Sometimes I need to replace a single value (at any row,&lt;br&gt;
&amp;gt; &amp;gt; column location) without changing the rest of the file.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; After searching and reading everything I can find in the&lt;br&gt;
&amp;gt; &amp;gt; help, I am still undecided on how to go about this. I would&lt;br&gt;
&amp;gt; &amp;gt; appreciate some advice from experienced Matlab users.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; I simply can't see an easy way to modify my file data with&lt;br&gt;
&amp;gt; &amp;gt; the Matlab file I/O functions I see listed in help.&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; (I'm working on Windows and my data is all ASCII. The&lt;br&gt;
&amp;gt; &amp;gt; delimiters and data organization in the files is not always&lt;br&gt;
&amp;gt; &amp;gt; uniform, so I often have to write code to analyze each&lt;br&gt;
&amp;gt; &amp;gt; character I read from a file and figure out where the data&lt;br&gt;
&amp;gt; &amp;gt; is that I want to change. However, I don't think there is&lt;br&gt;
&amp;gt; &amp;gt; anything really unusual about what I need to do.)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Use regular expressions to parse your files to find the data&lt;br&gt;
&amp;gt; you want. Use Walter's method #1, read the data from the&lt;br&gt;
source&lt;br&gt;
&amp;gt; file and write the altered data set to the destination file.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Rune&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
Thanks for your reply. I am trying to avoid rewriting an&lt;br&gt;
entire file when a single data item changes. (And it would&lt;br&gt;
be great is I don't have to read to the end of the file&lt;br&gt;
either, once I find the data I need to alter.)&lt;br&gt;
&lt;br&gt;
It looks like I might be able to use the xlswrite to achieve&lt;br&gt;
this end. However, I haven't figured out if it will indeed&lt;br&gt;
allow me to significantly alter one cell and just write that&lt;br&gt;
changed value back to disk. Help doesn't address that.&lt;br&gt;
&lt;br&gt;
It would be even better if the csvwrite would do what I need.&lt;br&gt;
&lt;br&gt;
Unfortunately, Matlab help isn't very clear on this. I've&lt;br&gt;
asked my question on the newsgroup in about three different&lt;br&gt;
ways and so far I still don't know much more than I did&lt;br&gt;
about a week ago... if anyone else wants to jump in here and&lt;br&gt;
give me some suggestions, I would greatly appreciate it.&lt;br&gt;
&lt;br&gt;
(BTW, searching in here for &quot;Walter's method #1&quot; doesn't&lt;br&gt;
return any results. I don't know what that method is.&lt;br&gt;
However, maybe it isn't relevant because the suggestion&lt;br&gt;
still looks like it requires reading and writing the entire&lt;br&gt;
file.)</description>
    </item>
    <item>
      <pubDate>Sat, 01 Sep 2007 22:34:21 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390393</link>
      <author>Bill </author>
      <description>Looks to me like you ought to consider using an Access &lt;br&gt;
database table to hold the data.  You can then employ &lt;br&gt;
select and update sqls to modify your 'datafiles'.&lt;br&gt;
&lt;br&gt;
I've become very enthused about using Access as a &lt;br&gt;
transportable data closet.  With the database toolbox, you &lt;br&gt;
don't even need to have Access.</description>
    </item>
    <item>
      <pubDate>Sun, 02 Sep 2007 01:02:39 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390402</link>
      <author>G.A.M. </author>
      <description>&quot;Bill &quot; &amp;lt;william.nospam.a.cobb@gm.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fbcpdd$b7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Looks to me like you ought to consider using an Access &lt;br&gt;
&amp;gt; database table to hold the data.  You can then employ &lt;br&gt;
&amp;gt; select and update sqls to modify your 'datafiles'.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I've become very enthused about using Access as a &lt;br&gt;
&amp;gt; transportable data closet.  With the database toolbox, you &lt;br&gt;
&amp;gt; don't even need to have Access.&lt;br&gt;
&lt;br&gt;
Thanks for the suggestion. I do have the database toolbox&lt;br&gt;
and I have been thinking about this as an option. I'd&lt;br&gt;
probably use Sql Server Express (or MSDE) rather than&lt;br&gt;
Access, but I think your suggestion is certainly an option I&lt;br&gt;
should consider.&lt;br&gt;
&lt;br&gt;
It seems like my options are coming down to either Excel or&lt;br&gt;
a database. But I was hoping for a solution that involved&lt;br&gt;
CSV/ASCII files. My past experience tells me that using a&lt;br&gt;
database will probably be slower than writing to CSV files.&lt;br&gt;
(I don't know how using one of the options to write to&lt;br&gt;
Excel-formatted files will compare in speed.) I also like&lt;br&gt;
the fact that ASCII text files, besides being generally fast&lt;br&gt;
than a db, are really easy to deal with.</description>
    </item>
    <item>
      <pubDate>Tue, 04 Sep 2007 15:06:37 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390684</link>
      <author>Peter Boettcher</author>
      <description>&quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; &quot;Bill &quot; &amp;lt;william.nospam.a.cobb@gm.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;lt;fbcpdd$b7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; It seems like my options are coming down to either Excel or&lt;br&gt;
&amp;gt; a database. But I was hoping for a solution that involved&lt;br&gt;
&amp;gt; CSV/ASCII files. My past experience tells me that using a&lt;br&gt;
&amp;gt; database will probably be slower than writing to CSV files.&lt;br&gt;
&lt;br&gt;
Unless you are talking about bulk saving or loading, I very much doubt&lt;br&gt;
that!&lt;br&gt;
&lt;br&gt;
&amp;gt; (I don't know how using one of the options to write to&lt;br&gt;
&amp;gt; Excel-formatted files will compare in speed.) I also like&lt;br&gt;
&amp;gt; the fact that ASCII text files, besides being generally fast&lt;br&gt;
&amp;gt; than a db, are really easy to deal with.&lt;br&gt;
&lt;br&gt;
Well, you are discovering precisely the things that make an ASCII file&lt;br&gt;
difficult to deal with.  They are very bad at random access, and&lt;br&gt;
nearly impossible to do single-entry modifications.  Higher-level&lt;br&gt;
wrappers like csvwrite, etc, will not change this.  It may hide some&lt;br&gt;
of the nastiness, but it will still probably rewrite the entire file.&lt;br&gt;
When I say bad, I mean slow and complex to implement.&lt;br&gt;
&lt;br&gt;
Databases are very good at randomly accessing elements, and at&lt;br&gt;
modifying, inserting, etc.&lt;br&gt;
&lt;br&gt;
A third option not mentioned here is a binary file.  If your data&lt;br&gt;
items are numeric, then random access is easy (via fseek, or even via&lt;br&gt;
memmapfile), and any item may be easily changed.  You can also easily&lt;br&gt;
append.  You still cannot delete or insert items, or shorten the file.&lt;br&gt;
&lt;br&gt;
-Peter</description>
    </item>
    <item>
      <pubDate>Wed, 05 Sep 2007 15:39:15 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390869</link>
      <author>G.A.M. </author>
      <description>Peter Boettcher &amp;lt;boettcher@ll.mit.edu&amp;gt; wrote in message&lt;br&gt;
&amp;lt;muy7in6qxky.fsf@G99-Boettcher.llan.ll.mit.edu&amp;gt;...&lt;br&gt;
&amp;gt; &quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; writes:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; &quot;Bill &quot; &amp;lt;william.nospam.a.cobb@gm.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;fbcpdd$b7$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; It seems like my options are coming down to either Excel or&lt;br&gt;
&amp;gt; &amp;gt; a database. But I was hoping for a solution that involved&lt;br&gt;
&amp;gt; &amp;gt; CSV/ASCII files. My past experience tells me that using a&lt;br&gt;
&amp;gt; &amp;gt; database will probably be slower than writing to CSV files.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Unless you are talking about bulk saving or loading, I&lt;br&gt;
very much doubt&lt;br&gt;
&amp;gt; that!&lt;br&gt;
&lt;br&gt;
I was on a data-intensive application development project&lt;br&gt;
where we collected extensive performance data on various&lt;br&gt;
persistence options and we were all surprised how fast the&lt;br&gt;
ASCII file I/O option was in a variety of situations. We&lt;br&gt;
ended up going with the ASCII file I/O option because it was&lt;br&gt;
several orders of magnitude faster for every I/O operation&lt;br&gt;
we used. That said, another application might have produced&lt;br&gt;
very different results.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; (I don't know how using one of the options to write to&lt;br&gt;
&amp;gt; &amp;gt; Excel-formatted files will compare in speed.) I also like&lt;br&gt;
&amp;gt; &amp;gt; the fact that ASCII text files, besides being generally fast&lt;br&gt;
&amp;gt; &amp;gt; than a db, are really easy to deal with.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Well, you are discovering precisely the things that make&lt;br&gt;
an ASCII file&lt;br&gt;
&amp;gt; difficult to deal with.  They are very bad at random&lt;br&gt;
access, and&lt;br&gt;
&amp;gt; nearly impossible to do single-entry modifications. &lt;br&gt;
Higher-level&lt;br&gt;
&amp;gt; wrappers like csvwrite, etc, will not change this.  It may&lt;br&gt;
hide some&lt;br&gt;
&amp;gt; of the nastiness, but it will still probably rewrite the&lt;br&gt;
entire file.&lt;br&gt;
&amp;gt; When I say bad, I mean slow and complex to implement.&lt;br&gt;
&lt;br&gt;
These points are all good reminders for me. Thanks for&lt;br&gt;
bringing them up.&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Databases are very good at randomly accessing elements, and at&lt;br&gt;
&amp;gt; modifying, inserting, etc.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I will seriously consider a database now.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; A third option not mentioned here is a binary file.  &lt;br&gt;
&lt;br&gt;
I think I'll stay away from this option. If I'm not going to&lt;br&gt;
enjoy the advantages of a database, I at least want to have&lt;br&gt;
the advantages of ASCII.</description>
    </item>
    <item>
      <pubDate>Wed, 05 Sep 2007 15:42:38 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390870</link>
      <author>G.A.M. </author>
      <description>&quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; wrote in message&lt;br&gt;
&amp;lt;fbchfp$g1g$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; I could use some advice.&lt;br&gt;
&lt;br&gt;
Rune Allnor &amp;lt;allnor@tele.ntnu.no&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; Use Walter's method #1, read the data from the&lt;br&gt;
&amp;gt; source&lt;br&gt;
&amp;gt; &amp;gt; file and write the altered data set to the destination file.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Rune&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &quot;G.A.M. &quot; &amp;lt;x0zero@gmail.com&amp;gt; wrote&lt;br&gt;
&amp;gt; Thanks for your reply. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; (BTW, searching in here for &quot;Walter's method #1&quot; doesn't&lt;br&gt;
&amp;gt; return any results. I don't know what that method is.&lt;br&gt;
&amp;gt; However, maybe it isn't relevant because the suggestion&lt;br&gt;
&amp;gt; still looks like it requires reading and writing the entire&lt;br&gt;
&amp;gt; file.)&lt;br&gt;
&lt;br&gt;
I never did find Walter's reply on the Matlab Newsreader web&lt;br&gt;
page, but I did find his helpful email in my inbox just&lt;br&gt;
today. Here is Walter's method #1:&lt;br&gt;
&lt;br&gt;
1) open the input file and open an output file, copy from&lt;br&gt;
input to&lt;br&gt;
output until you find what you need to change, write the changed&lt;br&gt;
data to the output file, then write the rest of the input to the&lt;br&gt;
output. This will work provided there is enough disk space for&lt;br&gt;
the second copy of the file, and is much safer than the other&lt;br&gt;
options because if something goes wrong in the middle of the&lt;br&gt;
process, you would still have the input file unchanged. </description>
    </item>
    <item>
      <pubDate>Wed, 05 Sep 2007 15:55:56 -0400</pubDate>
      <title>Re: Need advice on File I/O</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/155470#390872</link>
      <author> &quot;G.A.M.</author>
      <description>On Sep 5, 11:42 am, &quot;G.A.M. &quot; &amp;lt;x0z...@gmail.com&amp;gt; wrote:&lt;br&gt;
&amp;gt; &quot;G.A.M. &quot; &amp;lt;x0z...@gmail.com&amp;gt; wrote in message&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;lt;fbchfp$g1...@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I could use some advice.&lt;br&gt;
&amp;gt; Rune Allnor &amp;lt;all...@tele.ntnu.no&amp;gt; wrote in message&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Use Walter's method #1, read the data from the&lt;br&gt;
&amp;gt; &amp;gt; source&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; file and write the altered data set to the destination file.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;gt; Rune&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &quot;G.A.M. &quot; &amp;lt;x0z...@gmail.com&amp;gt; wrote&lt;br&gt;
&amp;gt; &amp;gt; Thanks for your reply.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; (BTW, searching in here for &quot;Walter's method #1&quot; doesn't&lt;br&gt;
&amp;gt; &amp;gt; return any results. I don't know what that method is.&lt;br&gt;
&amp;gt; &amp;gt; However, maybe it isn't relevant because the suggestion&lt;br&gt;
&amp;gt; &amp;gt; still looks like it requires reading and writing the entire&lt;br&gt;
&amp;gt; &amp;gt; file.)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I never did find Walter's reply on the Matlab Newsreader web&lt;br&gt;
&amp;gt; page, but I did find his helpful email in my inbox just&lt;br&gt;
&amp;gt; today. Here is Walter's method #1:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 1) open the input file and open an output file, copy from&lt;br&gt;
&amp;gt; input to&lt;br&gt;
&amp;gt; output until you find what you need to change, write the changed&lt;br&gt;
&amp;gt; data to the output file, then write the rest of the input to the&lt;br&gt;
&amp;gt; output. This will work provided there is enough disk space for&lt;br&gt;
&amp;gt; the second copy of the file, and is much safer than the other&lt;br&gt;
&amp;gt; options because if something goes wrong in the middle of the&lt;br&gt;
&amp;gt; process, you would still have the input file unchanged.&lt;br&gt;
&lt;br&gt;
I am a new Matlab user. I had no idea this newsgroup was primarily a&lt;br&gt;
USENET group. In fact, at first I thought it was accessible only via&lt;br&gt;
TMW's web page. Now that I'm viewing this content via Google Groups I&lt;br&gt;
see how silly it must have looked when I said &quot;here&quot; in my various&lt;br&gt;
messages while thinking that everyone was using the same Matlab&lt;br&gt;
Central web interface I was using. I probably won't access the content&lt;br&gt;
&quot;there&quot; (Matlab's web ui) in the future because it seems to drop&lt;br&gt;
messages and it seems to encourage top-posting.&lt;br&gt;
&lt;br&gt;
I guess that for most users there was no need for me to repost&lt;br&gt;
Walter's method #1. Sorry about that. When viewing the content via the&lt;br&gt;
Matlab web ui, I thought I was doing everyone a favor.</description>
    </item>
  </channel>
</rss>

