<?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: error: subscript out of range in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268000#M2736</link>
    <description>&lt;P&gt;You read in month_prof from the PROF data set, which apparently has 484 observations.&amp;nbsp; However, the n_farms variable, which is the upper limit of the "DO I" loop, is based on the number of observations in the OUTPUTS data set, which is apparently greater than 484.&amp;nbsp;&amp;nbsp; (I can't tell how many obs because you are using the NONOTES option.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, the program loops DO i = 1&amp;nbsp;TO n_farms and accesses the i_th row of month_prof. As soon as i exceeds 484, you get the "invalid subscript or subscript out of range" error.&lt;/P&gt;</description>
    <pubDate>Tue, 03 May 2016 17:04:42 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2016-05-03T17:04:42Z</dc:date>
    <item>
      <title>error: subscript out of range</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/267995#M2735</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Here is my code:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc iml;&lt;BR /&gt;use work.prof;&lt;BR /&gt;read all var {jun04 jul04 aug04 sep04 oct04 nov04 dec04 jan05 feb05 mar05 apr05 may05 jun05 jul05 aug05 sep05 oct05 nov05 dec05 jan06 feb06 mar06 apr06 may06 jun06 jul06 aug06 sep06 oct06 nov06 dec06 jan07 feb07 mar07 apr07 may07 jun07 jul07 aug07 sep07 oct07 nov07 dec07 jan08 feb08 mar08 apr08 may08 jun08 jul08 aug08 sep08 oct08 nov08 dec08 jan09 feb09 mar09 apr09 may09 jun09 jul09 aug09 sep09 oct09 nov09 dec09 jan10 feb10 mar10 apr10 may10 jun10 jul10 aug10 sep10 oct10 nov10 dec10 jan11 feb11 mar11 apr11 may11 jun11 jul11 aug11 sep11 oct11 nov11 dec11 jan12 feb12 mar12 apr12 may12 jun12 jul12 aug12 sep12 oct12 nov12 dec12 jan13 feb13 mar13 apr13 may13 jun13 jul13 aug13 sep13 oct13 nov13 dec13 jan14 feb14 mar14 apr14 may14 jun14 jul14 aug14 sep14 oct14 nov14 dec14 jan15 feb15 mar15 apr15 may15} into month_prof;&lt;BR /&gt;n_months=ncol(month_prof);&lt;BR /&gt;n_farms=nrow(month_prof);&lt;BR /&gt;use work.outputs;&lt;BR /&gt;read all var {jun04 jul04 aug04 sep04 oct04 nov04 dec04 jan05 feb05 mar05 apr05 may05 jun05 jul05 aug05 sep05 oct05 nov05 dec05 jan06 feb06 mar06 apr06 may06 jun06 jul06 aug06 sep06 oct06 nov06 dec06 jan07 feb07 mar07 apr07 may07 jun07 jul07 aug07 sep07 oct07 nov07 dec07 jan08 feb08 mar08 apr08 may08 jun08 jul08 aug08 sep08 oct08 nov08 dec08 jan09 feb09 mar09 apr09 may09 jun09 jul09 aug09 sep09 oct09 nov09 dec09 jan10 feb10 mar10 apr10 may10 jun10 jul10 aug10 sep10 oct10 nov10 dec10 jan11 feb11 mar11 apr11 may11 jun11 jul11 aug11 sep11 oct11 nov11 dec11 jan12 feb12 mar12 apr12 may12 jun12 jul12 aug12 sep12 oct12 nov12 dec12 jan13 feb13 mar13 apr13 may13 jun13 jul13 aug13 sep13 oct13 nov13 dec13 jan14 feb14 mar14 apr14 may14 jun14 jul14 aug14 sep14 oct14 nov14 dec14 jan15 feb15 mar15 apr15 may15} into month_lb;&lt;BR /&gt;n_months=ncol(month_lb);&lt;BR /&gt;n_farms=nrow(month_lb);&lt;/P&gt;&lt;P&gt;month_cwt = j(n_farms,n_months,0);&lt;BR /&gt;profpercwt = j(n_farms,n_months,.);&lt;/P&gt;&lt;P&gt;Theory_exit= j(n_farms,n_months,0);&lt;BR /&gt;real_exit= j(n_farms,n_months,.);&lt;/P&gt;&lt;P&gt;Theory_stay= j(n_farms,n_months,0);&lt;BR /&gt;real_stay= j(n_farms,n_months,.);&lt;/P&gt;&lt;P&gt;exit_accuracy = j(n_farms,n_months,.);&lt;BR /&gt;stay_accuracy = j(n_farms,n_months,.);&lt;/P&gt;&lt;P&gt;do i=1 to n_farms;&lt;BR /&gt;do j=2 to n_months;&lt;BR /&gt;&lt;BR /&gt;month_cwt[i,j] = month_lb[i,j]/100;&lt;BR /&gt;&lt;BR /&gt;if ((month_cwt[i,j]=0)*(month_cwt[i,j-1]^=0))=1 then real_exit[i,j]=1;&lt;BR /&gt;if ((month_cwt[i,j]=0)*(month_cwt[i,j-1]=0))=1 then real_exit[i,j]=.;&lt;BR /&gt;&lt;BR /&gt;if ((month_prof[i,j-1]&amp;lt;&amp;amp;shutdown_prof))=1 then theory_exit[i,j]=1;&lt;BR /&gt;if real_exit[i,j]=. then theory_exit[i,j]=.;&lt;BR /&gt;&lt;BR /&gt;if month_cwt[i,j]&amp;gt;0 then real_stay[i,j]=1;&lt;BR /&gt;&lt;BR /&gt;if ((month_prof[i,j-1]&amp;lt;&amp;amp;shutdown_prof))=0 then theory_stay[i,j]=1;&lt;BR /&gt;if real_stay[i,j]=. then theory_stay[i,j]=.;&lt;BR /&gt;&lt;BR /&gt;if real_exit[i,j]^=. then exit_accuracy[i,j]=(real_exit[i,j]=theory_exit[i,j]);&lt;BR /&gt;if real_stay[i,j]^=. then stay_accuracy[i,j]=(real_stay[i,j]=theory_stay[i,j]);&lt;BR /&gt;end;&lt;BR /&gt;end;&lt;BR /&gt;stay=stay_accuracy[:];&lt;BR /&gt;exit=exit_accuracy[:];&lt;BR /&gt;print stay exit;&lt;BR /&gt;quit;&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;Any insight into fixing the error is greatly appreciated. Thanks!&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is the log:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;55&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;56 proc iml;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: IML Ready&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;57 use work.prof;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 read all var {jun04jul04&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! aug04sep04oct04nov04dec04jan05feb05mar05apr05may05jun05jul05aug05sep05oct05nov05dec05jan06feb06mar06a&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! pr06may06jun06jul06aug06sep06oct06nov06dec06jan07feb07mar07apr07may07jun07jul07aug07sep07oct07nov07de&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! c07jan08feb08mar08apr08may08jun08jul08aug08sep08oct08nov08dec08jan09feb09mar09apr09may09jun09jul09aug&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! 09sep09oct09nov09dec09jan10feb10mar10apr10may10jun10jul10aug10sep10oct10nov10dec10jan11feb11mar11apr1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! 1may11jun11jul11aug11sep11oct11nov11dec11jan12feb12mar12apr12may12jun12jul12aug12sep12oct12nov12dec12&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! jan13feb13mar13apr13may13jun13jul13aug13sep13oct13nov13dec13jan14feb14mar14apr14may14jun14jul14aug14&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;58 ! sep14oct14nov14dec14jan15feb15mar15apr15may15} into month_prof;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;59 n_months=ncol(month_prof);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;60 n_farms=nrow(month_prof);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;61 use work.outputs;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 read all var {jun04jul04&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! aug04sep04oct04nov04dec04jan05feb05mar05apr05may05jun05jul05aug05sep05oct05nov05dec05jan06feb06mar06a&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! pr06may06jun06jul06aug06sep06oct06nov06dec06jan07feb07mar07apr07may07jun07jul07aug07sep07oct07nov07de&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! c07jan08feb08mar08apr08may08jun08jul08aug08sep08oct08nov08dec08jan09feb09mar09apr09may09jun09jul09aug&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! 09sep09oct09nov09dec09jan10feb10mar10apr10may10jun10jul10aug10sep10oct10nov10dec10jan11feb11mar11apr1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! 1may11jun11jul11aug11sep11oct11nov11dec11jan12feb12mar12apr12may12jun12jul12aug12sep12oct12nov12dec12&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! jan13feb13mar13apr13may13jun13jul13aug13sep13oct13nov13dec13jan14feb14mar14apr14may14jun14jul14aug14&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;62 ! sep14oct14nov14dec14jan15feb15mar15apr15may15} into month_lb;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;63 n_months=ncol(month_lb);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;64 n_farms=nrow(month_lb);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;65&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;66 month_cwt = j(n_farms,n_months,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;67 profpercwt = j(n_farms,n_months,.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;68&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;69 Theory_exit= j(n_farms,n_months,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;70 real_exit= j(n_farms,n_months,.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;71&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72 Theory_stay= j(n_farms,n_months,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 real_stay= j(n_farms,n_months,.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 exit_accuracy = j(n_farms,n_months,.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 stay_accuracy = j(n_farms,n_months,.);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 do i=1 to n_farms;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 !&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 ! do j=2 to n_months;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 ! month_cwt[i,j] = month_lb[i,j]/100;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 ! if ((month_cwt[i,j]=0)*(month_cwt[i,j-1]^=0))=1 then real_exit[i,j]=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 !&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 ! if ((month_cwt[i,j]=0)*(month_cwt[i,j-1]=0))=1 then real_exit[i,j]=.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 ! if (month_prof[i,j-1]&amp;lt;0)=1 then theory_exit[i,j]=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 ! if real_exit[i,j]=. then theory_exit[i,j]=.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 ! if month_cwt[i,j]&amp;gt;0 then real_stay[i,j]=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 ! if (month_prof[i,j-1]&amp;lt;0)=0 then theory_stay[i,j]=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 ! if real_stay[i,j]=. then theory_stay[i,j]=.;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 ! if real_exit[i,j]^=. then exit_accuracy[i,j]=(real_exit[i,j]=theory_exit[i,j]);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 ! if real_stay[i,j]^=. then stay_accuracy[i,j]=(real_stay[i,j]=theory_stay[i,j]);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 ! end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 end;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: (execution) Invalid subscript or subscript out of range.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operation : [ at line 86 column 16&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operands : month_prof, i, _TEM1001&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;month_prof 484 rows 132 cols (numeric)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;i 1 row 1 col (numeric)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;485&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;_TEM1001 1 row 1 col (numeric)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;statement : IF at line 86 column 2&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 stay=stay_accuracy[:];&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 exit=exit_accuracy[:];&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100 print stay exit;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101 quit;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Exiting IML.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE IML used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.50 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.49 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;102&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;103 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;115&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 May 2016 16:34:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/267995#M2735</guid>
      <dc:creator>NCSU_2016</dc:creator>
      <dc:date>2016-05-03T16:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: error: subscript out of range</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268000#M2736</link>
      <description>&lt;P&gt;You read in month_prof from the PROF data set, which apparently has 484 observations.&amp;nbsp; However, the n_farms variable, which is the upper limit of the "DO I" loop, is based on the number of observations in the OUTPUTS data set, which is apparently greater than 484.&amp;nbsp;&amp;nbsp; (I can't tell how many obs because you are using the NONOTES option.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In short, the program loops DO i = 1&amp;nbsp;TO n_farms and accesses the i_th row of month_prof. As soon as i exceeds 484, you get the "invalid subscript or subscript out of range" error.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 17:04:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268000#M2736</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-05-03T17:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: error: subscript out of range</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268001#M2737</link>
      <description>&lt;P&gt;Thanks Rick!&lt;BR /&gt;&lt;BR /&gt;That was exactly the problem, I used Proc Print to look more closely at 'outputs' to find there were 5 extra observations for each variable that were all blank. If this is the case, is this error a problem? i.e. will my results be affected?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 17:16:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268001#M2737</guid>
      <dc:creator>NCSU_2016</dc:creator>
      <dc:date>2016-05-03T17:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: error: subscript out of range</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268005#M2738</link>
      <description>&lt;P&gt;Yes, errors are always a problem that should be investigated and fixed.&amp;nbsp; The best thing to do is figure out why those five blank observations are there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you fail at that task, you could truncate the month_lb matrix so that it is always the same size as month_prof:&lt;/P&gt;
&lt;P&gt;month_lb = month_lb[1:nrow(month_prof), ];&lt;/P&gt;
&lt;P&gt;However, you'll feel better if you find out why the data sets are not the same size.&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 17:36:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268005#M2738</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-05-03T17:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: error: subscript out of range</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268006#M2739</link>
      <description>&lt;P&gt;Got it! Thanks again, Rick!&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 17:41:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/error-subscript-out-of-range/m-p/268006#M2739</guid>
      <dc:creator>NCSU_2016</dc:creator>
      <dc:date>2016-05-03T17:41:31Z</dc:date>
    </item>
  </channel>
</rss>

