<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Smooth MATLAB Graphics</title>
	<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/</link>
	<description>&#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=969735&#38;objectType=author"&#62;Bob&#60;/a&#62;, &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1093599&#38;objectType=author"&#62;Brett&#60;/a&#62; &#38; &#60;a href="http://www.mathworks.com/matlabcentral/fileexchange/loadAuthor.do?objectId=1094142&#38;objectType=author"&#62;Jiro&#60;/a&#62; share favorite user-contributed submissions from the File Exchange.</description>
	<pubDate>Sun, 08 Nov 2009 03:22:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: jiro</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-13104</link>
		<dc:creator>jiro</dc:creator>
		<pubDate>Thu, 26 Mar 2009 03:32:39 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-13104</guid>
		<description>Thanks for your comment, Jody.

You probably don't see any difference between the lines on the screen, because MATLAB graphics currently don't support real antialiasing.

For example, a typical screen resolution is 96 pixels per inch. A point is 1/72th of an inch. This means that the 1 point line is 1 1/3 pixels, while the 0.5 point line is 2/3 pixels. So both lines get rounded to 1 pixel.

However, I have relayed your comment over to development.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment, Jody.</p>
<p>You probably don&#8217;t see any difference between the lines on the screen, because MATLAB graphics currently don&#8217;t support real antialiasing.</p>
<p>For example, a typical screen resolution is 96 pixels per inch. A point is 1/72th of an inch. This means that the 1 point line is 1 1/3 pixels, while the 0.5 point line is 2/3 pixels. So both lines get rounded to 1 pixel.</p>
<p>However, I have relayed your comment over to development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jody  Klymak</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-13101</link>
		<dc:creator>Jody  Klymak</dc:creator>
		<pubDate>Tue, 24 Mar 2009 00:29:47 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-13101</guid>
		<description>Sorry to revive an old post, but another post made me think to look and see if this had been treated before.

My number-1 beef with Matlab is the quality of the display graphics. I don't understand why 

&#62;&#62; plot(1:10,'linewi',1)
&#62;&#62; hold on
&#62;&#62; plot((1:10)+1,'linewi',0.5) 

look exactly the same on the screen despite looking quite different in anything sent to print.  Is there a reason for this limitation in this day and age, or do I have something set inappropriately?</description>
		<content:encoded><![CDATA[<p>Sorry to revive an old post, but another post made me think to look and see if this had been treated before.</p>
<p>My number-1 beef with Matlab is the quality of the display graphics. I don&#8217;t understand why </p>
<p>&gt;&gt; plot(1:10,&#8217;linewi&#8217;,1)<br />
&gt;&gt; hold on<br />
&gt;&gt; plot((1:10)+1,&#8217;linewi&#8217;,0.5) </p>
<p>look exactly the same on the screen despite looking quite different in anything sent to print.  Is there a reason for this limitation in this day and age, or do I have something set inappropriately?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ad</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12942</link>
		<dc:creator>Ad</dc:creator>
		<pubDate>Thu, 20 Nov 2008 17:41:42 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12942</guid>
		<description>Hi,

I just found a tip for anti-ailiasing lines. Just add the attribute 'LineSmoothing','on'. i.e. 

line([x0n x1n],[y0n y1n],'LineWidth',2,'LineSmoothing','on');

It doesn't appear to be documented in matlab but it works nicely.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I just found a tip for anti-ailiasing lines. Just add the attribute &#8216;LineSmoothing&#8217;,'on&#8217;. i.e. </p>
<p>line([x0n x1n],[y0n y1n],&#8217;LineWidth&#8217;,2,&#8217;LineSmoothing&#8217;,'on&#8217;);</p>
<p>It doesn&#8217;t appear to be documented in matlab but it works nicely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jiro</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12668</link>
		<dc:creator>jiro</dc:creator>
		<pubDate>Tue, 02 Sep 2008 19:01:24 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12668</guid>
		<description>@Daniel,
We do use the hardware, but we don't expose the supersampling feature through that path, so if you want supersampling, for now you'll need to do it in software.

@Quan,
Thanks for your comments. Yes, functions for automatically pasting MATLAB plots into a PowerPoint presentation can be very useful. In fact, now you can do this by using MATLAB's publish capability and selecting PPT as the output format.

http://www.mathworks.com/access/helpdesk/help/techdoc/matlab_env/briymz8-1.html#bri9_s4</description>
		<content:encoded><![CDATA[<p>@Daniel,<br />
We do use the hardware, but we don&#8217;t expose the supersampling feature through that path, so if you want supersampling, for now you&#8217;ll need to do it in software.</p>
<p>@Quan,<br />
Thanks for your comments. Yes, functions for automatically pasting MATLAB plots into a PowerPoint presentation can be very useful. In fact, now you can do this by using MATLAB&#8217;s publish capability and selecting PPT as the output format.</p>
<p><a href="http://www.mathworks.com/access/helpdesk/help/techdoc/matlab_env/briymz8-1.html#bri9_s4" rel="nofollow">http://www.mathworks.com/access/helpdesk/help/techdoc/matlab_env/briymz8-1.html#bri9_s4</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Armyr</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12638</link>
		<dc:creator>Daniel Armyr</dc:creator>
		<pubDate>Mon, 01 Sep 2008 06:37:33 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12638</guid>
		<description>Hi.

This post raises a question with me: Does matlab use hardware accellerated graphics? And if so, why not allow hardware-accelerated anti-aliasing?</description>
		<content:encoded><![CDATA[<p>Hi.</p>
<p>This post raises a question with me: Does matlab use hardware accellerated graphics? And if so, why not allow hardware-accelerated anti-aliasing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quan</title>
		<link>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12607</link>
		<dc:creator>Quan</dc:creator>
		<pubDate>Fri, 29 Aug 2008 17:12:01 +0000</pubDate>
		<guid>http://blogs.mathworks.com/pick/2008/08/29/smooth-matlab-graphics/#comment-12607</guid>
		<description>Not to be a troll, but I kind of like the way the original plot looks better.  Nethertheless, a very cool tool!

In terms of creating presentations, I've written some scripts that create plots and then automatically copies and pastes them into a powerpoint presentation.  It is really useful when you're processing a large batch of data!</description>
		<content:encoded><![CDATA[<p>Not to be a troll, but I kind of like the way the original plot looks better.  Nethertheless, a very cool tool!</p>
<p>In terms of creating presentations, I&#8217;ve written some scripts that create plots and then automatically copies and pastes them into a powerpoint presentation.  It is really useful when you&#8217;re processing a large batch of data!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
