<?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: Combinations and Permutations in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377568#M3615</link>
    <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;you solved my problem!&lt;/P&gt;</description>
    <pubDate>Wed, 19 Jul 2017 20:06:24 GMT</pubDate>
    <dc:creator>SBuc</dc:creator>
    <dc:date>2017-07-19T20:06:24Z</dc:date>
    <item>
      <title>Combinations and Permutations</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377416#M3613</link>
      <description>&lt;P&gt;Dear community,&lt;/P&gt;&lt;P&gt;I am looking for printing all the different combinations of a clinical signs scoring system.&lt;/P&gt;&lt;P&gt;I have six clinical signs (b1,..,b6) which are either normal abnormal (0,1)&lt;/P&gt;&lt;P&gt;I want to print all the 2^6 (64) possible clinical signs association.&lt;/P&gt;&lt;P&gt;I am relatively new with IML of SAS and did not arrive to do it.&lt;/P&gt;&lt;P&gt;please let me know if you have any clue!&lt;/P&gt;&lt;P&gt;I really appreciate&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 15:51:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377416#M3613</guid>
      <dc:creator>SBuc</dc:creator>
      <dc:date>2017-07-19T15:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Combinations and Permutations</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377459#M3614</link>
      <description>&lt;P&gt;The simplest way is&lt;/P&gt;
&lt;PRE&gt;proc iml;
allComb = ExpandGrid(0:1, 0:1, 0:1,
                     0:1, 0:1, 0:1 ); 
print allComb;
&lt;/PRE&gt;
&lt;P&gt;This solution hard-codes six arguments,&amp;nbsp;If the 'number of clinical signs' might change from study to study, &amp;nbsp;you can use one of the other techniques&amp;nbsp;in the article &lt;A href="http://blogs.sas.com/content/iml/2011/01/05/creating-a-matrix-with-all-combinations-of-zeros-and-ones.html" target="_self"&gt;"Creating a matrix with all combinations of zeros and ones."&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 16:58:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377459#M3614</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-07-19T16:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Combinations and Permutations</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377568#M3615</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;you solved my problem!&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 20:06:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377568#M3615</guid>
      <dc:creator>SBuc</dc:creator>
      <dc:date>2017-07-19T20:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Combinations and Permutations</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377626#M3616</link>
      <description>&lt;P&gt;Since you are asking for a full-factorial design, you can instead use the MktEx macro. &amp;nbsp;It also makes fractional factorial designs, orthogonal arrays, and nonorthogonal designs, all using the same syntax. &amp;nbsp;You can add the option 'noqc' after 'render' if you do not have the SAS/QC product. &amp;nbsp;For your particular problem, you could also use PROC PLAN.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;%mktex(2 ** 6, n=64, levels=0, options=render)&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 23:59:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Combinations-and-Permutations/m-p/377626#M3616</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-19T23:59:02Z</dc:date>
    </item>
  </channel>
</rss>

