<?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: MATLAB Basics video: Storing data in a matrix from a loop</title>
	<atom:link href="http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/</link>
	<description>&#60;a href=&#34;http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1093599&#38;objectType=author&#34;&#62;Brett&#60;/a&#62; &#38; &#60;a href=&#34;http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1094142&#38;objectType=author&#34;&#62;Jiro&#60;/a&#62; share favorite user-contributed submissions from the File Exchange.</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:12:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Saima</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14351</link>
		<dc:creator>Saima</dc:creator>
		<pubDate>Fri, 02 Dec 2011 09:10:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14351</guid>
		<description>How can I use this code to assign the parameters of membershi function &#039;mf&#039; of 1 and 2 to vector VParam using for loop. I tried but it gives only one mf parameters.

VParam=getfis(x,&#039;input&#039;,1,&#039;mf&#039;,1,&#039;params&#039;); 
</description>
		<content:encoded><![CDATA[<p>How can I use this code to assign the parameters of membershi function &#8216;mf&#8217; of 1 and 2 to vector VParam using for loop. I tried but it gives only one mf parameters.</p>
<p>VParam=getfis(x,&#8217;input&#8217;,1,&#8217;mf&#8217;,1,&#8217;params&#8217;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atanu</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14287</link>
		<dc:creator>Atanu</dc:creator>
		<pubDate>Mon, 31 Oct 2011 04:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14287</guid>
		<description>Hey Doug, I really liked the video and the job ur doing here. May I as well bring forward my query, as another novice in Matlab.
I need to store output of a function: 
[x, y]=myfunc(imagefile), from a no. of (144) image pairs (each pair with members 1 &amp; 2) from a directory. 
they are .tif images; member1 filenames are &#039;*0(.tif)&#039; and member2 filenames are as &#039;*1.tif&#039;. I need the store all outputs of member1 files in matrix(/array) A, and the others in B (say).
Also need to know if this&#039;s better off as a subfunction of myfunc,or as a script in the same directory. Please help.Thanks a lot.</description>
		<content:encoded><![CDATA[<p>Hey Doug, I really liked the video and the job ur doing here. May I as well bring forward my query, as another novice in Matlab.<br />
I need to store output of a function:<br />
[x, y]=myfunc(imagefile), from a no. of (144) image pairs (each pair with members 1 &amp; 2) from a directory.<br />
they are .tif images; member1 filenames are &#8216;*0(.tif)&#8217; and member2 filenames are as &#8216;*1.tif&#8217;. I need the store all outputs of member1 files in matrix(/array) A, and the others in B (say).<br />
Also need to know if this&#8217;s better off as a subfunction of myfunc,or as a script in the same directory. Please help.Thanks a lot.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: News</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14282</link>
		<dc:creator>News</dc:creator>
		<pubDate>Sun, 23 Oct 2011 00:28:11 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14282</guid>
		<description>Very helpful information ..  thanks very much</description>
		<content:encoded><![CDATA[<p>Very helpful information ..  thanks very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doug</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14270</link>
		<dc:creator>Doug</dc:creator>
		<pubDate>Thu, 13 Oct 2011 13:45:41 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14270</guid>
		<description>@ Majj

Probably store in a matrix:

&lt;pre&gt;
for r = 1: 10;
 for c = 1: 10;
   m(r,c) = rand;
 end
end
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@ Majj</p>
<p>Probably store in a matrix:</p>
<pre>
for r = 1: 10;
 for c = 1: 10;
   m(r,c) = rand;
 end
end
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: majj</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14268</link>
		<dc:creator>majj</dc:creator>
		<pubDate>Thu, 13 Oct 2011 08:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14268</guid>
		<description>hi....if i am using &quot;for loop&quot; inside another &quot;for loop&quot; how am i going to store the values in a vector??</description>
		<content:encoded><![CDATA[<p>hi&#8230;.if i am using &#8220;for loop&#8221; inside another &#8220;for loop&#8221; how am i going to store the values in a vector??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: majj</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14267</link>
		<dc:creator>majj</dc:creator>
		<pubDate>Thu, 13 Oct 2011 08:43:38 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14267</guid>
		<description>hi....if i am using for loop inside another for loop how am i going to store the values in a vector??</description>
		<content:encoded><![CDATA[<p>hi&#8230;.if i am using for loop inside another for loop how am i going to store the values in a vector??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anadief</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14223</link>
		<dc:creator>anadief</dc:creator>
		<pubDate>Fri, 02 Sep 2011 22:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14223</guid>
		<description>Hi,
I&#039;ve created a function with one input and three output.
Example:

function [out1 out2 out3] = F(input)

Then I&#039;ve used the output in some file.m, which passes them as single values. My problem is that; I need to save all the output for each iteration number &quot;say (i=1:100)&quot; as a vector.
How do I do that; Note that when I&#039;ve used  global out1...out3 it keeps over write the values, and saved only the last value at the end of the loop.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;ve created a function with one input and three output.<br />
Example:</p>
<p>function [out1 out2 out3] = F(input)</p>
<p>Then I&#8217;ve used the output in some file.m, which passes them as single values. My problem is that; I need to save all the output for each iteration number &#8220;say (i=1:100)&#8221; as a vector.<br />
How do I do that; Note that when I&#8217;ve used  global out1&#8230;out3 it keeps over write the values, and saved only the last value at the end of the loop.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Poojan</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14218</link>
		<dc:creator>Poojan</dc:creator>
		<pubDate>Fri, 19 Aug 2011 13:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14218</guid>
		<description>Thank you so much......I just passed my test because of your help from the video!! Please I insist you to put more of these videos and make a compilation.</description>
		<content:encoded><![CDATA[<p>Thank you so much&#8230;&#8230;I just passed my test because of your help from the video!! Please I insist you to put more of these videos and make a compilation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javid</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14134</link>
		<dc:creator>Javid</dc:creator>
		<pubDate>Sun, 15 May 2011 19:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14134</guid>
		<description>Thank you SO much for posting this; this has helped me GREATLY writing my script.</description>
		<content:encoded><![CDATA[<p>Thank you SO much for posting this; this has helped me GREATLY writing my script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laura</title>
		<link>http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14075</link>
		<dc:creator>Laura</dc:creator>
		<pubDate>Mon, 21 Mar 2011 01:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2007/08/20/matlab-basics-video/#comment-14075</guid>
		<description>sorry, this is my output:
&lt;pre&gt;

y =

  Columns 1 through 3

   1.655740699156587   2.970592781760616   3.957166948242946

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.957166948242946

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.792207329559554

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.655477890177556

  Column 10

  10.959492426392902


y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.655477890177556

  Column 10

  10.171186687811561

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>sorry, this is my output:</p>
<pre>

y =

  Columns 1 through 3

   1.655740699156587   2.970592781760616   3.957166948242946

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.957166948242946

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.485375648722841   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.800280468888801   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.141886338627216

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.421761282626275   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.915735525189067   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.792207329559554

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.655477890177556

  Column 10

  10.959492426392902

y =

  Columns 1 through 3

   1.655740699156587   2.035711678574190   3.849129305868777

  Columns 4 through 6

   4.933993247757551   5.678735154857773   6.757740130578333

  Columns 7 through 9

   7.743132468124916   8.392227019534168   9.655477890177556

  Column 10

  10.171186687811561
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

