<?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 question on proc iml in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/955987#M6408</link>
    <description>&lt;P&gt;&amp;nbsp;I am posting some code found on &lt;A href="https://documentation.sas.com/doc/da/pgmsascdc/v_058/imlug/imlug_nonlinearoptexpls_sect003.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/da/pgmsascdc/v_058/imlug/imlug_nonlinearoptexpls_sect003.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having trouble understanding the simple assignment statement shown in the example from the above web page . I am copying and pasting those lines below . Can someone here explain&amp;nbsp; what is 10. and 1. in the below assignment statements ? What does the '. ' signify ? Thanks a lot for answering . Where is the SAS official documentation explaining what that " . " does&amp;nbsp; ?&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;y1 = 10. * (x[2] - x[1] * x[1]);
   y2 = 1. - x[1];&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 14 Jan 2025 02:29:30 GMT</pubDate>
    <dc:creator>danielpremisaac</dc:creator>
    <dc:date>2025-01-14T02:29:30Z</dc:date>
    <item>
      <title>question on proc iml</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/955987#M6408</link>
      <description>&lt;P&gt;&amp;nbsp;I am posting some code found on &lt;A href="https://documentation.sas.com/doc/da/pgmsascdc/v_058/imlug/imlug_nonlinearoptexpls_sect003.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/da/pgmsascdc/v_058/imlug/imlug_nonlinearoptexpls_sect003.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having trouble understanding the simple assignment statement shown in the example from the above web page . I am copying and pasting those lines below . Can someone here explain&amp;nbsp; what is 10. and 1. in the below assignment statements ? What does the '. ' signify ? Thanks a lot for answering . Where is the SAS official documentation explaining what that " . " does&amp;nbsp; ?&lt;/P&gt;&lt;PRE class=""&gt;&lt;CODE&gt;y1 = 10. * (x[2] - x[1] * x[1]);
   y2 = 1. - x[1];&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 02:29:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/955987#M6408</guid>
      <dc:creator>danielpremisaac</dc:creator>
      <dc:date>2025-01-14T02:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: question on proc iml</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/955988#M6409</link>
      <description>As far as I know&lt;BR /&gt;10.  is identity with 10&lt;BR /&gt;1.     is identity with   1&lt;BR /&gt;maybe &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt; need say something .</description>
      <pubDate>Tue, 14 Jan 2025 02:46:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/955988#M6409</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2025-01-14T02:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: question on proc iml</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956030#M6410</link>
      <description>&lt;P&gt;The dot is a decimal point. In some languages such as FORTRAN, C, and Python, there is a difference between floating point numbers and integer numbers. The person who wrote this example was probably a programmer in one of these languages and was probably used to using decimal points to emphasize floating point computations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS IML does not distinguish between numerical types. Every number is a double-precision floating point number. Thus, the example can also be written as&amp;nbsp;&lt;/P&gt;
&lt;PRE class=""&gt;&lt;CODE&gt;y1 = 10 * (x[2] - x[1] * x[1]);
y2 = 1 - x[1];&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 10:41:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956030#M6410</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2025-01-14T10:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: question on proc iml</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956065#M6411</link>
      <description>&lt;P&gt;Thank You for reading and answering .&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 14:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956065#M6411</guid>
      <dc:creator>danielpremisaac</dc:creator>
      <dc:date>2025-01-14T14:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: question on proc iml</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956069#M6412</link>
      <description>&lt;P&gt;Thank You for reading and answering . I was searching the SAS documentation for an answer , and I found none ! Its good to know , that it was probably something specific to this particular programmer who wrote this example.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 14:34:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/question-on-proc-iml/m-p/956069#M6412</guid>
      <dc:creator>danielpremisaac</dc:creator>
      <dc:date>2025-01-14T14:34:33Z</dc:date>
    </item>
  </channel>
</rss>

