<?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 Re: Multiply matrix and vector with proc iml in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421316#M27122</link>
    <description>Thank you, will do!</description>
    <pubDate>Thu, 14 Dec 2017 19:29:01 GMT</pubDate>
    <dc:creator>x2PSx</dc:creator>
    <dc:date>2017-12-14T19:29:01Z</dc:date>
    <item>
      <title>Multiply matrix and vector with proc iml</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421243#M27108</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to multiply a matrix and a vector with proc iml, but I never used it,.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, I already have the two datasets that I need, one MATRIX and one VECTOR.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply want the resulting vector of the&amp;nbsp;multiplication of MATRIX*VECTOR in a new dataset with one variable named RESULT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 16:37:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421243#M27108</guid>
      <dc:creator>x2PSx</dc:creator>
      <dc:date>2017-12-14T16:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply matrix and vector with proc iml</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421260#M27110</link>
      <description>&lt;P&gt;Here's an introductory resource to PROC IML that I hope you'll find helpful. Rick also publishes "The DO Loop" blog for SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings13/144-2013.pdf" target="_self"&gt;http://support.sas.com/resources/papers/proceedings13/144-2013.pdf&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the future, I suggest you post IML questions to the Analytics / SAS/IML area. The Enterprise Guide area tends to get questions about the EG interface, and the IML folks don't tend to watch it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2017 17:33:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421260#M27110</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2017-12-14T17:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply matrix and vector with proc iml</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421316#M27122</link>
      <description>Thank you, will do!</description>
      <pubDate>Thu, 14 Dec 2017 19:29:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421316#M27122</guid>
      <dc:creator>x2PSx</dc:creator>
      <dc:date>2017-12-14T19:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiply matrix and vector with proc iml</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421572#M27148</link>
      <description>&lt;P&gt;Better post is at IML forum, since it is a IML question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data matrix;
 set sashelp.class;
 keep age weight height;
run;
data vector;
 do vector=1 to 3;
  output;
 end;
run;

proc iml;
use matrix;
read all var _num_ into matrix;
close;
use vector;
read all var {vector};
close;

result=matrix*vector;

create result var {result};
append;
close;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Dec 2017 14:11:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Multiply-matrix-and-vector-with-proc-iml/m-p/421572#M27148</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-12-15T14:11:59Z</dc:date>
    </item>
  </channel>
</rss>

