<?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: Displaying Numbers in MATLAB</title>
	<atom:link href="http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/</link>
	<description>Loren Shure works on design of the MATLAB language at MathWorks. She writes here about once a week on MATLAB programming and related topics.</description>
	<lastBuildDate>Thu, 16 Feb 2012 04:40:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-31553</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Fri, 30 Jul 2010 16:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-31553</guid>
		<description>Richard-

I think you&#039;ll need to roll your own using some of the options for fprintf here: http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fprintf.html

You should submit this as an enhancement request using the support link on the right of my blog.

--Loren</description>
		<content:encoded><![CDATA[<p>Richard-</p>
<p>I think you&#8217;ll need to roll your own using some of the options for fprintf here: <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fprintf.html" rel="nofollow">http://www.mathworks.com/access/helpdesk/help/techdoc/ref/fprintf.html</a></p>
<p>You should submit this as an enhancement request using the support link on the right of my blog.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-31552</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Fri, 30 Jul 2010 12:12:24 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-31552</guid>
		<description>Is there a way to make fprintf also print numbers in the engineering format? This would be very useful to me as I occasionally use fprintf to print tables of numbers and text for documents.

Thanks,

Richard</description>
		<content:encoded><![CDATA[<p>Is there a way to make fprintf also print numbers in the engineering format? This would be very useful to me as I occasionally use fprintf to print tables of numbers and text for documents.</p>
<p>Thanks,</p>
<p>Richard</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-30023</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Sat, 07 Feb 2009 12:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-30023</guid>
		<description>RVG-

Try various options with format or you might have to use fprintf.

--Loren</description>
		<content:encoded><![CDATA[<p>RVG-</p>
<p>Try various options with format or you might have to use fprintf.</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RVG</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-30022</link>
		<dc:creator>RVG</dc:creator>
		<pubDate>Sat, 07 Feb 2009 10:03:58 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-30022</guid>
		<description>Thanks for the interesting blog!
I have a question, if I want to display a number
with ONLY 0 in the LHS of decimal point along with &#039;e&#039; precision, how do I do it?
eg. I have 123456 and want to write this into a file
as 0.123456e6, is it possible?
Thanks in anticipation!</description>
		<content:encoded><![CDATA[<p>Thanks for the interesting blog!<br />
I have a question, if I want to display a number<br />
with ONLY 0 in the LHS of decimal point along with &#8216;e&#8217; precision, how do I do it?<br />
eg. I have 123456 and want to write this into a file<br />
as 0.123456e6, is it possible?<br />
Thanks in anticipation!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammad Reza</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-16008</link>
		<dc:creator>Mohammad Reza</dc:creator>
		<pubDate>Fri, 05 Jan 2007 06:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-16008</guid>
		<description>One the tasks of an array oriented language is to generalise concepts. Take for example the decimal point. In 10.987; it seperate the number into two parts, those parts bigger than one and those that are a fraction. This can be generalised to present the following types of numbers:

complex   eg. 1j7     (1+7j)
circular  eg. 3p2     (3.5*pi or may be 3*pi^2)
natural   eg. 2x3     (2*exp(3))
rational  eg. 2r5     (2/5)
base      eg. 2b101   (101 in base 2)

and more; imagination is the limit!

The notations can of course be combined, eg:
3r4j5  or  1.2e2r4

just a thought.

/m</description>
		<content:encoded><![CDATA[<p>One the tasks of an array oriented language is to generalise concepts. Take for example the decimal point. In 10.987; it seperate the number into two parts, those parts bigger than one and those that are a fraction. This can be generalised to present the following types of numbers:</p>
<p>complex   eg. 1j7     (1+7j)<br />
circular  eg. 3p2     (3.5*pi or may be 3*pi^2)<br />
natural   eg. 2&#215;3     (2*exp(3))<br />
rational  eg. 2r5     (2/5)<br />
base      eg. 2b101   (101 in base 2)</p>
<p>and more; imagination is the limit!</p>
<p>The notations can of course be combined, eg:<br />
3r4j5  or  1.2e2r4</p>
<p>just a thought.</p>
<p>/m</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loren</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-16002</link>
		<dc:creator>Loren</dc:creator>
		<pubDate>Tue, 02 Jan 2007 12:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-16002</guid>
		<description>Ken-

Thanks for the kind words.  Here&#039;s to a new year of good code and happy coding!

--Loren</description>
		<content:encoded><![CDATA[<p>Ken-</p>
<p>Thanks for the kind words.  Here&#8217;s to a new year of good code and happy coding!</p>
<p>&#8211;Loren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken Campbell</title>
		<link>http://blogs.mathworks.com/loren/2006/12/27/displaying-numbers-in-matlab/#comment-15998</link>
		<dc:creator>Ken Campbell</dc:creator>
		<pubDate>Thu, 28 Dec 2006 16:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.mathworks.com/loren/?p=71#comment-15998</guid>
		<description>I have found all of these blogs particularly interesting and am starting to incorporate some of the tricks I&#039;ve read about it in my own code. I wouldn&#039;t say the end result is particularly slick, but it&#039;s getting better :-) Thanks for your efforts.</description>
		<content:encoded><![CDATA[<p>I have found all of these blogs particularly interesting and am starting to incorporate some of the tricks I&#8217;ve read about it in my own code. I wouldn&#8217;t say the end result is particularly slick, but it&#8217;s getting better :-) Thanks for your efforts.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

