<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492</link>
    <title>MATLAB Central Newsreader - Total Matlab newb needs your help</title>
    <description>Feed for thread: Total Matlab newb needs your help</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>Wed, 19 Nov 2008 11:15:03 -0500</pubDate>
      <title>Total Matlab newb needs your help</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492#611766</link>
      <author>Mike Rayner</author>
      <description>Hi , I have been asked to design a neural network in matlab that takes vectors of handwritten digits as the training data. Then I have been given some testing data to see if the network works. The data is of the form 47,100, 27, 81, 57, 37, 26, 0, 0, 23, 56, 53,100, 90, 40, 98, 8 for the number 8 and I have over 7000 of these. I have absolutely no idea how to get matlab to do this as I have only just started using it any useful guides or links could really help as I am really stressing over it.&lt;br&gt;
&lt;br&gt;
Thanks in advance</description>
    </item>
    <item>
      <pubDate>Wed, 19 Nov 2008 11:28:02 -0500</pubDate>
      <title>Re: Total Matlab newb needs your help</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492#611771</link>
      <author>David </author>
      <description>&quot;Mike Rayner&quot; &amp;lt;mikerayner@one-place.co.uk&amp;gt; wrote in message &amp;lt;gg0sfn$8um$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi , I have been asked to design a neural network in matlab that takes vectors of handwritten digits as the training data. Then I have been given some testing data to see if the network works. The data is of the form 47,100, 27, 81, 57, 37, 26, 0, 0, 23, 56, 53,100, 90, 40, 98, 8 for the number 8 and I have over 7000 of these. I have absolutely no idea how to get matlab to do this as I have only just started using it any useful guides or links could really help as I am really stressing over it.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks in advance&lt;br&gt;
&lt;br&gt;
ok, we get the idea, we don't need it 3 times.</description>
    </item>
    <item>
      <pubDate>Wed, 19 Nov 2008 13:36:02 -0500</pubDate>
      <title>Re: Total Matlab newb needs your help</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492#611792</link>
      <author>Adam </author>
      <description>&quot;David&quot; &amp;lt;dave@bigcompany.com&amp;gt; wrote in message &amp;lt;gg0t82$gks$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Mike Rayner&quot; &amp;lt;mikerayner@one-place.co.uk&amp;gt; wrote in message &amp;lt;gg0sfn$8um$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Hi , I have been asked to design a neural network in matlab that takes vectors of handwritten digits as the training data. Then I have been given some testing data to see if the network works. The data is of the form 47,100, 27, 81, 57, 37, 26, 0, 0, 23, 56, 53,100, 90, 40, 98, 8 for the number 8 and I have over 7000 of these. I have absolutely no idea how to get matlab to do this as I have only just started using it any useful guides or links could really help as I am really stressing over it.&lt;br&gt;
&amp;gt; &amp;gt; &lt;br&gt;
&amp;gt; &amp;gt; Thanks in advance&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; ok, we get the idea, we don't need it 3 times.&lt;br&gt;
&lt;br&gt;
This isn't helpful.&lt;br&gt;
People new to the interface tend to hit submit more than once (say it doesn't respond immediately) not realizing it will double post.  Whatever, it happens.&lt;br&gt;
&lt;br&gt;
Mike, the scope of what you're asking is quite large.  Do you have any programming experience?  Have you done anything with Neural networks.&lt;br&gt;
&lt;br&gt;
If this was something that could be explained in a couple lines don't you think it would have been done already?&lt;br&gt;
&lt;br&gt;
~Adam</description>
    </item>
    <item>
      <pubDate>Wed, 19 Nov 2008 17:04:02 -0500</pubDate>
      <title>Re: Total Matlab newb needs your help</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492#611840</link>
      <author>Mike Rayner</author>
      <description>yes I have plenty of programming experience &amp; appreciate this isn't something I am going to be able to work out in a few hours. I have been giving a bit of code which is in c for 'finding zero'.&lt;br&gt;
which goes like :-for i=1:size(s,1)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if s(i,17)==0&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;s(i,17)=1;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;else s(i,17)=0;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end&lt;br&gt;
end&lt;br&gt;
P=s(:,1:16);&lt;br&gt;
P=P';&lt;br&gt;
T=s(:,17);&lt;br&gt;
T=T';&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I need to start heading in the right direction with this task at the moment I am going nowhere slowly.&lt;br&gt;
&lt;br&gt;
Thanks in advance for any further help anyone can give. </description>
    </item>
    <item>
      <pubDate>Wed, 19 Nov 2008 17:24:02 -0500</pubDate>
      <title>Re: Total Matlab newb needs your help</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/239492#611847</link>
      <author>Adam </author>
      <description>&quot;Mike Rayner&quot; &amp;lt;mikerayner@one-place.co.uk&amp;gt; wrote in message &amp;lt;gg1gu2$8al$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; yes I have plenty of programming experience &amp; appreciate this isn't something I am going to be able to work out in a few hours. I have been giving a bit of code which is in c for 'finding zero'.&lt;br&gt;
&amp;gt; which goes like :-for i=1:size(s,1)&lt;br&gt;
&amp;gt;     if s(i,17)==0&lt;br&gt;
&amp;gt;         s(i,17)=1;&lt;br&gt;
&amp;gt;     else s(i,17)=0;&lt;br&gt;
&amp;gt;     end&lt;br&gt;
&amp;gt; end&lt;br&gt;
&amp;gt; P=s(:,1:16);&lt;br&gt;
&amp;gt; P=P';&lt;br&gt;
&amp;gt; T=s(:,17);&lt;br&gt;
&amp;gt; T=T';&lt;br&gt;
&lt;br&gt;
Reading this would help, Vectorizing in Matlab:&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/support/tech-notes/1100/1109.html&quot;&gt;http://www.mathworks.com/support/tech-notes/1100/1109.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Your code could be condenced to, (I believe) ...&lt;br&gt;
P = s(:,16) .';&lt;br&gt;
T = ~s(:,17) .';&lt;br&gt;
&lt;br&gt;
I don't really know anything about neural networks, but if you post code people will help you optimize, improve, matlabize it.&lt;br&gt;
&lt;br&gt;
~Adam</description>
    </item>
  </channel>
</rss>

