<?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: Exploring your data with datatips</title>
	<atom:link href="http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/</link>
	<description>Mike works on the MATLAB Desktop team</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:17:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7674</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 05 Apr 2011 12:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7674</guid>
		<description>@Soren,

 I will pass that suggestion on to the editor team. If you want to hack your install, you can do it by
&lt;pre&gt;
edit datatipinfo
&lt;/pre&gt;
then in the nested function sizetype add the following elseif to the big if block on the variable &quot;D&quot;
&lt;pre&gt;
 elseif D == 4
            theSize = [num2str(s(1)), &#039;x&#039;, num2str(s(2)), &#039;x&#039;, ...
                num2str(s(3)), &#039;x&#039;, num2str(s(4))];
        else
            theSize = [num2str(D) &#039;-D&#039;];
&lt;/pre&gt;

I would not recommend hacking this to actually display the value of a 4-dimension variable, it would be too large to fit in the tooltip and needlessly waste memory.</description>
		<content:encoded><![CDATA[<p>@Soren,</p>
<p> I will pass that suggestion on to the editor team. If you want to hack your install, you can do it by</p>
<pre>
edit datatipinfo
</pre>
<p>then in the nested function sizetype add the following elseif to the big if block on the variable &#8220;D&#8221;</p>
<pre>
 elseif D == 4
            theSize = [num2str(s(1)), 'x', num2str(s(2)), 'x', ...
                num2str(s(3)), 'x', num2str(s(4))];
        else
            theSize = [num2str(D) '-D'];
</pre>
<p>I would not recommend hacking this to actually display the value of a 4-dimension variable, it would be too large to fit in the tooltip and needlessly waste memory.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Soren</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7673</link>
		<dc:creator>Soren</dc:creator>
		<pubDate>Tue, 05 Apr 2011 06:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7673</guid>
		<description>I know the thread is old but in case you read this - why not make datatips configurable?  For a lot of people in medical image processing where &gt;3D matrices is the norm, it would be great to be able to see the dimension sizes rather than just the [4D] label that is assigned to such a variable. just looking for same behaviour as for dimensionality &lt;=3.
I spend a lot of time doing size(myvariable) on 4Ds and it gets a little annoying and disturbs the work flow.
Soren</description>
		<content:encoded><![CDATA[<p>I know the thread is old but in case you read this &#8211; why not make datatips configurable?  For a lot of people in medical image processing where &gt;3D matrices is the norm, it would be great to be able to see the dimension sizes rather than just the [4D] label that is assigned to such a variable. just looking for same behaviour as for dimensionality &lt;=3.<br />
I spend a lot of time doing size(myvariable) on 4Ds and it gets a little annoying and disturbs the work flow.<br />
Soren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7224</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 09 Aug 2010 13:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7224</guid>
		<description>@Peter,
 Can you explain about what you mean with &quot;datatip does not appear anymore&quot;? In order to show a tip there has to be a variable with the same name in the workspace. You&#039;ll only see tips for variables in the current context.</description>
		<content:encoded><![CDATA[<p>@Peter,<br />
 Can you explain about what you mean with &#8220;datatip does not appear anymore&#8221;? In order to show a tip there has to be a variable with the same name in the workspace. You&#8217;ll only see tips for variables in the current context.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7223</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Mon, 09 Aug 2010 13:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-7223</guid>
		<description>I like this feature in the debug mode. However, for some reason the datatip dose not appear anymore. Is there anybody who knows more about this...

I use Matlab 7.5.0 (R2007b). The &#039;Enable datatips in edit mode&#039; in the &#039;Preferences&#039; is turned on.

Thanks,
Peter</description>
		<content:encoded><![CDATA[<p>I like this feature in the debug mode. However, for some reason the datatip dose not appear anymore. Is there anybody who knows more about this&#8230;</p>
<p>I use Matlab 7.5.0 (R2007b). The &#8216;Enable datatips in edit mode&#8217; in the &#8216;Preferences&#8217; is turned on.</p>
<p>Thanks,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6888</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 24 Feb 2010 16:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6888</guid>
		<description>Mike,

I had to do some additional digging and it turns out that this is a bug in the datatipinfo function as it explicitly skips the first 9 characters for sturctures and thus removes the first 2 characters of the information. This is easily fixed on my local copy and I hope this was fixed for R2009b and R2010a.</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>I had to do some additional digging and it turns out that this is a bug in the datatipinfo function as it explicitly skips the first 9 characters for sturctures and thus removes the first 2 characters of the information. This is easily fixed on my local copy and I hope this was fixed for R2009b and R2010a.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6882</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Tue, 23 Feb 2010 13:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6882</guid>
		<description>@Sam,

 I am not sure about your particular piece of data, but we&#039;ve made improvements to the datatip code in R2009b and R2010a.</description>
		<content:encoded><![CDATA[<p>@Sam,</p>
<p> I am not sure about your particular piece of data, but we&#8217;ve made improvements to the datatip code in R2009b and R2010a.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6881</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 23 Feb 2010 13:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6881</guid>
		<description>Hi Mike,

I am also using Matlab R2009a on Windows XP with dual monitors and somehow I don&#039;t have the same bug as the one Ben has written about. However, I have the following observation(bug?): In debug mode or cell mode, information about some of my structure array variables are not shown completely in the in-editor-datatip (or as output of the datatipinfo fuction call) compared to the command window when typing the variable name as shown below (it shows the structure array having 8 elements where in fact it has 188). Is this also a bug that was fixed in 2009b? Thanks!

&gt;&gt; output
output = 
188x1 struct array with fields:
    info
    results
&gt;&gt; datatipinfo(output)
output:
8x1 struct array with fields:
    info
    results</description>
		<content:encoded><![CDATA[<p>Hi Mike,</p>
<p>I am also using Matlab R2009a on Windows XP with dual monitors and somehow I don&#8217;t have the same bug as the one Ben has written about. However, I have the following observation(bug?): In debug mode or cell mode, information about some of my structure array variables are not shown completely in the in-editor-datatip (or as output of the datatipinfo fuction call) compared to the command window when typing the variable name as shown below (it shows the structure array having 8 elements where in fact it has 188). Is this also a bug that was fixed in 2009b? Thanks!</p>
<p>&gt;&gt; output<br />
output =<br />
188&#215;1 struct array with fields:<br />
    info<br />
    results<br />
&gt;&gt; datatipinfo(output)<br />
output:<br />
8&#215;1 struct array with fields:<br />
    info<br />
    results</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6799</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 17 Jan 2010 16:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6799</guid>
		<description>Thanks Mike!  I wonder if i can get my institute to upgrade...

Cheers</description>
		<content:encoded><![CDATA[<p>Thanks Mike!  I wonder if i can get my institute to upgrade&#8230;</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6798</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 15 Jan 2010 21:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6798</guid>
		<description>Ben,

 It is a bug, and it&#039;s something we fixed in MATLAB R2009b.</description>
		<content:encoded><![CDATA[<p>Ben,</p>
<p> It is a bug, and it&#8217;s something we fixed in MATLAB R2009b.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6797</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 15 Jan 2010 16:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/desktop/2008/01/28/exploring-your-data-with-datatips/#comment-6797</guid>
		<description>Hi Ken - I know this thread is long dead, but I have a datatips question for you.  I just started using Matlab 7.8.0 (2009a), and noticed that when I am at the bottom of my screen (and editor window), the datatips in the editor are shown below the variable I am looking at, which in this case is off the screen (I am on windows xp, on a dual-monitor situation).  My memory of previous versions was that if there wasn&#039;t room to display the datatip underneath the variable it would display it above the variable.  In this case, I cannot read the values (since they are below my screen), and often work at the bottom of the editor or screen, since that&#039;s where the empty space on the editor is.   Is this a bug?  Is there a fix?  I&#039;m sorry if this has been discussed before; I couldn&#039;t find it in the discussion forum. 

Thanks! 
~Ben</description>
		<content:encoded><![CDATA[<p>Hi Ken &#8211; I know this thread is long dead, but I have a datatips question for you.  I just started using Matlab 7.8.0 (2009a), and noticed that when I am at the bottom of my screen (and editor window), the datatips in the editor are shown below the variable I am looking at, which in this case is off the screen (I am on windows xp, on a dual-monitor situation).  My memory of previous versions was that if there wasn&#8217;t room to display the datatip underneath the variable it would display it above the variable.  In this case, I cannot read the values (since they are below my screen), and often work at the bottom of the editor or screen, since that&#8217;s where the empty space on the editor is.   Is this a bug?  Is there a fix?  I&#8217;m sorry if this has been discussed before; I couldn&#8217;t find it in the discussion forum. </p>
<p>Thanks!<br />
~Ben</p>
]]></content:encoded>
	</item>
</channel>
</rss>

