<?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 Proc iml 3d array in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-iml-3d-array/m-p/735937#M5461</link>
    <description>&lt;P&gt;Hi everyone!&lt;/P&gt;
&lt;P&gt;I am trying to define a three dimensional array with proc iml. Currently I am converting a matlab code to SAS so that I need to deal with matrices a lot. Is there any known way to define a 3d array /matrix?&lt;/P&gt;</description>
    <pubDate>Wed, 21 Apr 2021 12:31:12 GMT</pubDate>
    <dc:creator>berkayoz</dc:creator>
    <dc:date>2021-04-21T12:31:12Z</dc:date>
    <item>
      <title>Proc iml 3d array</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-iml-3d-array/m-p/735937#M5461</link>
      <description>&lt;P&gt;Hi everyone!&lt;/P&gt;
&lt;P&gt;I am trying to define a three dimensional array with proc iml. Currently I am converting a matlab code to SAS so that I need to deal with matrices a lot. Is there any known way to define a 3d array /matrix?&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 12:31:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-iml-3d-array/m-p/735937#M5461</guid>
      <dc:creator>berkayoz</dc:creator>
      <dc:date>2021-04-21T12:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc iml 3d array</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-iml-3d-array/m-p/735951#M5462</link>
      <description>&lt;P&gt;One way is to use a list of ordinary 2d matrices.&amp;nbsp; For example the code below creates a list of 3 4x4 matrices, then modifies two of them.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
  Z = ListCreate(3);
  do i = 1 to 3;
    Z$i = i(4);
  end;
  Z$2 = Z$2 + 1;
  Z$3 = Z$3 # 3;

  package load listutil;
  call listprint(Z);
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Apr 2021 13:20:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Proc-iml-3d-array/m-p/735951#M5462</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2021-04-21T13:20:58Z</dc:date>
    </item>
  </channel>
</rss>

