<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168667</link>
    <title>MATLAB Central Newsreader - Computer precision?</title>
    <description>Feed for thread: Computer precision?</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Sat, 03 May 2008 15:03:35 -0400</pubDate>
      <title>Computer precision?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168667#430079</link>
      <author>onofftopic@gmail.com</author>
      <description>Hi,&lt;br&gt;
&lt;br&gt;
according to the Matlab Help double computer precision (64-bit) is&lt;br&gt;
default in Matlab for 32-bit computers. Maybe is this question&lt;br&gt;
offtopic, but i would like to know why is there no higher precision,&lt;br&gt;
e.g. 128-bit precision, for 32-bit computers?&lt;br&gt;
&lt;br&gt;
What is the limitation for the computer precision?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thank you in advance.&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Sun, 04 May 2008 20:21:03 -0400</pubDate>
      <title>Re: Computer precision?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168667#430209</link>
      <author>carlos lopez</author>
      <description>onofftopic@gmail.com wrote in message&lt;br&gt;
&amp;lt;d039b0df-5f51-43a0-9b4b-e3127d398868@27g2000hsf.googlegroups.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; according to the Matlab Help double computer precision&lt;br&gt;
(64-bit) is&lt;br&gt;
&amp;gt; default in Matlab for 32-bit computers. Maybe is this question&lt;br&gt;
&amp;gt; offtopic, but i would like to know why is there no higher&lt;br&gt;
precision,&lt;br&gt;
&amp;gt; e.g. 128-bit precision, for 32-bit computers?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; What is the limitation for the computer precision?&lt;br&gt;
Hello onofftopic@gmail.com:&lt;br&gt;
On principle there is no fundamental limitation... aside&lt;br&gt;
from the degradation in performance. &lt;br&gt;
In order to use arbitrary precision you might want to test&lt;br&gt;
the Multiple PRecision toolbox by Ben Barrowes, available on&lt;br&gt;
the FEX. It allows to simulate any precision. &lt;br&gt;
"Double precision" is defined in the IEEE 754 standard; 32&lt;br&gt;
bit matlab implements it on all the architectures, so you&lt;br&gt;
can achieve identical results irrespective of the platform. &lt;br&gt;
If you need just a bit more precision than double AND you&lt;br&gt;
are using INTEL processors, you might want to look at the&lt;br&gt;
Extended Precision class by Marcel Leutenegger, available&lt;br&gt;
somewhere.&lt;br&gt;
Regards&lt;br&gt;
Carlos&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Mon, 05 May 2008 13:06:09 -0400</pubDate>
      <title>Re: Computer precision?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168667#430329</link>
      <author>Peter Boettcher</author>
      <description>onofftopic@gmail.com writes:&lt;br&gt;
&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; according to the Matlab Help double computer precision (64-bit) is&lt;br&gt;
&amp;gt; default in Matlab for 32-bit computers. Maybe is this question&lt;br&gt;
&amp;gt; offtopic, but i would like to know why is there no higher precision,&lt;br&gt;
&amp;gt; e.g. 128-bit precision, for 32-bit computers?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; What is the limitation for the computer precision?&lt;br&gt;
&lt;br&gt;
Modern computer hardware implements 64-bit floating point very&lt;br&gt;
efficiently.  Anything larger than that requires software&lt;br&gt;
implementation.  It is possible to implement 128-bit floating point&lt;br&gt;
using pairs of 64-bit FP values, with software glue, but any approach&lt;br&gt;
like this will be much slower than the hardware-supported 64-bit&lt;br&gt;
computations.&lt;br&gt;
&lt;br&gt;
-Peter&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Mon, 05 May 2008 16:59:00 -0400</pubDate>
      <title>Re: Computer precision?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/168667#430381</link>
      <author>roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)</author>
      <description>In article &amp;lt;muyskwwj3y6.fsf@G99-Boettcher.llan.ll.mit.edu&amp;gt;,&lt;br&gt;
Peter Boettcher  &amp;lt;boettcher@ll.mit.edu&amp;gt; wrote:&lt;br&gt;
&amp;gt;onofftopic@gmail.com writes:&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; according to the Matlab Help double computer precision (64-bit) is&lt;br&gt;
&amp;gt;&amp;gt; default in Matlab for 32-bit computers. Maybe is this question&lt;br&gt;
&amp;gt;&amp;gt; offtopic, but i would like to know why is there no higher precision,&lt;br&gt;
&amp;gt;&amp;gt; e.g. 128-bit precision, for 32-bit computers?&lt;br&gt;
&lt;br&gt;
&amp;gt;Modern computer hardware implements 64-bit floating point very&lt;br&gt;
&amp;gt;efficiently.  Anything larger than that requires software&lt;br&gt;
&amp;gt;implementation.&lt;br&gt;
&lt;br&gt;
most x86 systems have 80 bit floating point internally (though the&lt;br&gt;
values are usually rounded to 64 bits when stored to memory.)&lt;br&gt;
&lt;br&gt;
I do not know if it is possible to turn on 80 bit mode in Matlab.&lt;br&gt;
I have never been able to keep track of the system dependant&lt;br&gt;
functions such as system_dependant(). I didn't see anything likely&lt;br&gt;
when googling, but I didn't spend particularily long at it.l&lt;br&gt;
&lt;br&gt;
-- &lt;br&gt;
&amp;nbsp;&amp;nbsp;"Is there any thing whereof it may be said, See, this is new? It hath&lt;br&gt;
&amp;nbsp;&amp;nbsp;been already of old time, which was before us."    -- Ecclesiastes&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
