<?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: No results being generated despite no Errors?? in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419962#M3903</link>
    <description>&lt;P&gt;&lt;STRONG&gt;You&lt;/STRONG&gt; did not print anything.&amp;nbsp; That is why nothing is printed.&amp;nbsp; You defined BP and&amp;nbsp;two vectors, then you quit.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Dec 2017 19:19:43 GMT</pubDate>
    <dc:creator>WarrenKuhfeld</dc:creator>
    <dc:date>2017-12-10T19:19:43Z</dc:date>
    <item>
      <title>No results being generated despite no Errors??</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419946#M3902</link>
      <description>&lt;P&gt;Hi all. Basically im doing coding for boxplot for purpose outlier detection. I dont know what went wrong with my coding, no results no errors. I have tried FLOOR func to replace LOC, nothing happen still. code LEFT meaning, the data that clear from outlier as LOWFEN and UPPFEN are the fences to detect outlier. So how can i print the LEFT(data without outlier). my data contain 3 group.&amp;nbsp;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC IML;&lt;BR /&gt;RESET NONAME;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;START BP(A) GLOBAL (NY,NCOL,RMEAN,VARX,N);&lt;BR /&gt;RMEAN=J(NCOL(NY),1,0);&lt;BR /&gt;Q1=RMEAN;&lt;BR /&gt;Q3=RMEAN;&lt;BR /&gt;RMAD=RMEAN;&lt;BR /&gt;MADN=RMEAN;&lt;BR /&gt;LOWFEN=RMEAN;&lt;BR /&gt;UPPFEN=RMEAN;&lt;BR /&gt;LEFT=RMEAN;&lt;BR /&gt;F=1;&lt;BR /&gt;M=0;&lt;/P&gt;&lt;P&gt;DO J=1 TO NCOL(NY);&lt;/P&gt;&lt;P&gt;SAMP=NY[J];&lt;BR /&gt;L=M+SAMP;&lt;BR /&gt;TEMP=A[F:L];&lt;BR /&gt;&lt;BR /&gt;Q=quartile (TEMP);&lt;BR /&gt;Q1[J]=Q[2,1];&lt;BR /&gt;Q3[J]=Q[4,1];&lt;BR /&gt;RMAD[J]=MAD(TEMP,"MAD");&lt;BR /&gt;MADN[J]=MAD(TEMP,"NMAD");&lt;BR /&gt;LOWFEN[J]=Q1[J]-(1.44*MADN[J]);&lt;BR /&gt;UPPFEN[J]=Q3[J]+(1.44*MADN[J]);&lt;BR /&gt;LEFT[J]=TEMP[LOC(LOWFEN[J]&amp;lt;TEMP &amp;amp; TEMP&amp;lt;UPPFEN[J])];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;M=L;&lt;BR /&gt;F=F+SAMP;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;PRINT LEFT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINISH;&lt;/P&gt;&lt;P&gt;********cubaan menggunakan data yg dijana*******;&lt;/P&gt;&lt;P&gt;NY = {11 11 11};&lt;BR /&gt;A = {5,8,7,3,9,4,3,29,5,6,7,&lt;BR /&gt;3,2,6,4,14,4,7,6,9,3,4,&lt;BR /&gt;9,9,8,7,10,11,27,12,15,17,16};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2017 18:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419946#M3902</guid>
      <dc:creator>NURAO</dc:creator>
      <dc:date>2017-12-10T18:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: No results being generated despite no Errors??</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419962#M3903</link>
      <description>&lt;P&gt;&lt;STRONG&gt;You&lt;/STRONG&gt; did not print anything.&amp;nbsp; That is why nothing is printed.&amp;nbsp; You defined BP and&amp;nbsp;two vectors, then you quit.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2017 19:19:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419962#M3903</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-12-10T19:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: No results being generated despite no Errors??</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419988#M3905</link>
      <description>&lt;P&gt;First, you need to call the BP module before you quit:&lt;/P&gt;
&lt;P&gt;RUN BP(A);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, in your module, you have the statement&lt;/P&gt;
&lt;P&gt;LEFT[J]=TEMP[LOC(LOWFEN[J]&amp;lt;TEMP &amp;amp; TEMP&amp;lt;UPPFEN[J])];&lt;/P&gt;
&lt;P&gt;The left-hand side of the assignment is a scalar. However, the right-hand side is *in general) a vector. You cannot assign a vector into a single element, so you will get&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: (execution) Matrices do not conform to the operation.&lt;/P&gt;
&lt;P&gt;which means that you are attempting a vector operation that doesn't make sense.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Dec 2017 23:36:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/No-results-being-generated-despite-no-Errors/m-p/419988#M3905</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-12-10T23:36:38Z</dc:date>
    </item>
  </channel>
</rss>

