<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Is there any difference between using D or E in scientific notation in SAS? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870694#M343912</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  x=0.123456789d2;
  y=0.123456789e2;
  z=x=y;
  put x= /y= /z=;
run;

x=12.3456789
y=12.3456789
z=1&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I can use D or E in&amp;nbsp;scientific notation in SAS, is there any difference between them?&lt;/P&gt;</description>
    <pubDate>Thu, 20 Apr 2023 03:03:41 GMT</pubDate>
    <dc:creator>whymath</dc:creator>
    <dc:date>2023-04-20T03:03:41Z</dc:date>
    <item>
      <title>Is there any difference between using D or E in scientific notation in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870694#M343912</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  x=0.123456789d2;
  y=0.123456789e2;
  z=x=y;
  put x= /y= /z=;
run;

x=12.3456789
y=12.3456789
z=1&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I can use D or E in&amp;nbsp;scientific notation in SAS, is there any difference between them?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 03:03:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870694#M343912</guid>
      <dc:creator>whymath</dc:creator>
      <dc:date>2023-04-20T03:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any difference between using D or E in scientific notation in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870697#M343915</link>
      <description>&lt;P&gt;Not to SAS.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 04:24:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870697#M343915</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-04-20T04:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any difference between using D or E in scientific notation in SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870720#M343925</link>
      <description>&lt;P&gt;I think the D notation comes from FORTRAN, where it is used to denote double-precision numbers (64-bit floating-point numbers, as opposed to 32 bit - like a C double vs. float). In SAS, all numbers are double-precision floats, so it does not matter here. But I would recommend using the E notation, as that is more commonly understood.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 07:53:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-any-difference-between-using-D-or-E-in-scientific/m-p/870720#M343925</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2023-04-20T07:53:22Z</dc:date>
    </item>
  </channel>
</rss>

