<?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: Cell arrays for holding different data types</title>
	<atom:link href="http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/</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: Amanda</title>
		<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13902</link>
		<dc:creator>Amanda</dc:creator>
		<pubDate>Mon, 25 Oct 2010 10:13:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13902</guid>
		<description>Thanks so much for this tutorial!  Very clear and easy to understand.</description>
		<content:encoded><![CDATA[<p>Thanks so much for this tutorial!  Very clear and easy to understand.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Liqing</title>
		<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13511</link>
		<dc:creator>Liqing</dc:creator>
		<pubDate>Thu, 15 Apr 2010 15:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13511</guid>
		<description>Thank you for the nice short video. It is very helpful.</description>
		<content:encoded><![CDATA[<p>Thank you for the nice short video. It is very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve L</title>
		<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13413</link>
		<dc:creator>Steve L</dc:creator>
		<pubDate>Fri, 29 Jan 2010 17:06:55 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13413</guid>
		<description>MAuricio,

From the description it sounds like the features variable is a cell array that itself contains a cell array.

&lt;pre&gt;
innercell = {1, 2, 3};
outercell = {&#039;abc&#039;, innercell}
&lt;/pre&gt;

To do this, you will need to &quot;drill into&quot; the cell array multiple levels to see the contents of the innermost cell array.

&lt;pre&gt;
innercell2 = outercell{1, 2}
innerdata = outercell{1, 2}{1}
&lt;/pre&gt;

Depending on how deeply nested the cell arrays are, you may need to use several layers of indexing to obtain the actual raw data.</description>
		<content:encoded><![CDATA[<p>MAuricio,</p>
<p>From the description it sounds like the features variable is a cell array that itself contains a cell array.</p>
<pre>
innercell = {1, 2, 3};
outercell = {'abc', innercell}
</pre>
<p>To do this, you will need to &#8220;drill into&#8221; the cell array multiple levels to see the contents of the innermost cell array.</p>
<pre>
innercell2 = outercell{1, 2}
innerdata = outercell{1, 2}{1}
</pre>
<p>Depending on how deeply nested the cell arrays are, you may need to use several layers of indexing to obtain the actual raw data.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MAuricio</title>
		<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13410</link>
		<dc:creator>MAuricio</dc:creator>
		<pubDate>Thu, 28 Jan 2010 14:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13410</guid>
		<description>Well. thanks for the attention
I want to know how to see the data saved on a cell, look at this:
features{1,13,2}
ans = 

    [1x16 double]
features(1,13,1)

ans = 

    {1x1 cell}

Well the matter is i want to view the values of the data saved, but i don´t know how</description>
		<content:encoded><![CDATA[<p>Well. thanks for the attention<br />
I want to know how to see the data saved on a cell, look at this:<br />
features{1,13,2}<br />
ans = </p>
<p>    [1x16 double]<br />
features(1,13,1)</p>
<p>ans = </p>
<p>    {1&#215;1 cell}</p>
<p>Well the matter is i want to view the values of the data saved, but i don´t know how</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ritwik Banerjee</title>
		<link>http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13235</link>
		<dc:creator>Ritwik Banerjee</dc:creator>
		<pubDate>Wed, 09 Sep 2009 18:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/pick/2008/06/23/matlab-basics-cell-arrays-for-holding-different-data-types/#comment-13235</guid>
		<description>Thanks a bunch for this easy-to-understand video. This short post taught me a lot!! I was going to so many forums to learn this thing, but this is where I finally understood it clearly. Thanks again. :)</description>
		<content:encoded><![CDATA[<p>Thanks a bunch for this easy-to-understand video. This short post taught me a lot!! I was going to so many forums to learn this thing, but this is where I finally understood it clearly. Thanks again. :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

