<?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: how to get inverse matrix in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908153#M6159</link>
    <description>&lt;P&gt;It is IML thing. You'd better post it at IML forum&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/bd-p/sas_iml" target="_blank"&gt;https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/bd-p/sas_iml&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;,and calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data A;
input a1-a7;
cards;
1 2 9 5 5 6 7
4 2 3 1 5 6 4
1 4 6 2 9 6 3
6 8 7 3 8 6 2
8 7 8 8 9 6 1
3 1 3 9 1 6 6
2 7 3 4 2 6 7
;


proc iml;
use A;
read all var _all_ into a[c=vname];
close;
inv_a=inv(a);
create B from inv_a[c=vname];
append from inv_a;
close;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 15 Dec 2023 09:13:54 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2023-12-15T09:13:54Z</dc:date>
    <item>
      <title>how to get inverse matrix</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908151#M6158</link>
      <description>&lt;P&gt;I have a matirx datasetA (7*7), and I want to get the inverse matrix of this datasetA and save this inverse matrix in datasetB. Could you please tell me how to implement it using sas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2023 08:58:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908151#M6158</guid>
      <dc:creator>Yanni_C</dc:creator>
      <dc:date>2023-12-15T08:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: how to get inverse matrix</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908153#M6159</link>
      <description>&lt;P&gt;It is IML thing. You'd better post it at IML forum&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/bd-p/sas_iml" target="_blank"&gt;https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/bd-p/sas_iml&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;,and calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data A;
input a1-a7;
cards;
1 2 9 5 5 6 7
4 2 3 1 5 6 4
1 4 6 2 9 6 3
6 8 7 3 8 6 2
8 7 8 8 9 6 1
3 1 3 9 1 6 6
2 7 3 4 2 6 7
;


proc iml;
use A;
read all var _all_ into a[c=vname];
close;
inv_a=inv(a);
create B from inv_a[c=vname];
append from inv_a;
close;
quit;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Dec 2023 09:13:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908153#M6159</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-12-15T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to get inverse matrix</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908155#M6160</link>
      <description>&lt;P&gt;Thank you very much! Really helpful!&lt;/P&gt;</description>
      <pubDate>Fri, 15 Dec 2023 09:19:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/how-to-get-inverse-matrix/m-p/908155#M6160</guid>
      <dc:creator>Yanni_C</dc:creator>
      <dc:date>2023-12-15T09:19:16Z</dc:date>
    </item>
  </channel>
</rss>

