<?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: 95% confidence intervals for the eigenvalues in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690905#M5299</link>
    <description>&lt;P&gt;You can modify the READ statement like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  use THC;
  read all var ('chem1':'chem13') into X;
  close THC;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 12 Oct 2020 08:24:42 GMT</pubDate>
    <dc:creator>IanWakeling</dc:creator>
    <dc:date>2020-10-12T08:24:42Z</dc:date>
    <item>
      <title>95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690358#M5288</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;I need to find&amp;nbsp;95% confidence intervals of correlation matrix for the first to fifth eigenvalues of a dataset (n=178). Where, I tried giving it using proc iml as below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc iml;&lt;BR /&gt;reset print;&lt;BR /&gt;eig=eigval(THC);&lt;BR /&gt;E=eigvec(THC);&lt;BR /&gt;alpha=0.05;&lt;BR /&gt;zright=quantile("Normal", 1-alpha/2);&lt;BR /&gt;CI_1_lower=eig[1]/(1+zright*sqrt(2/178));&lt;BR /&gt;CI_1_upper=eig[1]/(1-zright*sqrt(2/178));&lt;BR /&gt;CI_2_lower=eig[2]/(1+zright*sqrt(2/178));&lt;BR /&gt;CI_2_upper=eig[2]/(1-zright*sqrt(2/178));&lt;BR /&gt;CI_3_lower=eig[3]/(1+zright*sqrt(2/178));&lt;BR /&gt;CI_3_upper=eig[3]/(1-zright*sqrt(2/178));&lt;BR /&gt;CI_4_lower=eig[4]/(1+zright*sqrt(2/178));&lt;BR /&gt;CI_4_upper=eig[4]/(1-zright*sqrt(2/178));&lt;BR /&gt;CI_5_lower=eig[5]/(1+zright*sqrt(2/178));&lt;BR /&gt;CI_5_upper=eig[5]/(1-zright*sqrt(2/178));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get only the following output but not intervals.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;alpha 1 row 1 col (numeric)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;0.05&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;zright 1 row 1 col (numeric)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;1.959964&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone tell me where am i going wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;lakshmi&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 13:10:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690358#M5288</guid>
      <dc:creator>lakshmishree</dc:creator>
      <dc:date>2020-10-09T13:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690517#M5290</link>
      <description>&lt;P&gt;Do you have a SAS LOG you could post to see the code in context?&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 17:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690517#M5290</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2020-10-09T17:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690519#M5291</link>
      <description>&lt;P&gt;Whenever you submit a SAS program, you should look at the log to make sure there are no errors. In this case, the log displays&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3 eig=eigval(THC);&lt;BR /&gt;&lt;STRONG&gt;ERROR: (execution) Matrix has not been set to a value.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;operation : EIGVAL at line 3 column 11&lt;BR /&gt;operands : THC&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;THC 0 row 0 col (type ?, size 0)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The error message tells you that the THC matrix (which is the argument to the EIGVAL function) is not defined. Before you try to use it, you need to read it from a data set or define it manually:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;THC = {5 4 3 2 1 ,
       4 5 4 3 2 ,
       3 4 5 4 3 ,
       2 3 4 5 4 ,
       1 2 3 4 5 };


&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Oct 2020 17:42:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690519#M5291</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-10-09T17:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690649#M5292</link>
      <description>&lt;P&gt;I'm also trying to do this. I've added&amp;nbsp;read all var _all_ into x; to read the THC dataset into a matrix as below, how I'm getting the following errors:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 proc iml;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: IML Ready&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 use THC;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 reset print;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 read all var _all_ into x;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 eig=eigval(x);&lt;/DIV&gt;&lt;DIV class="sasError focus-line"&gt;ERROR: (execution) Matrix should be square.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operation : EIGVAL at line 77 column 11&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operands : x&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;x 178 rows 14 cols (numeric)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;statement : ASSIGN at line 77 column 1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 e_vec=eigvec(x);&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: (execution) Matrix should be square.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operation : EIGVEC at line 78 column 13&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operands : x&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;x 178 rows 14 cols (numeric)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;statement : ASSIGN at line 78 column 1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 CI_1_lower=eig[1]/(1+1.645*sqrt(2/178));&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: (execution) Matrix has not been set to a value.&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc iml;&lt;BR /&gt;use THC;&lt;BR /&gt;reset print;&lt;BR /&gt;read all var _all_ into x;&lt;BR /&gt;eig=eigval(x);&lt;BR /&gt;e_vec=eigvec(x);&lt;BR /&gt;CI_1_lower=eig[1]/(1+1.645*sqrt(2/178));&lt;BR /&gt;CI_1_upper=eig[1]/(1-1.645*sqrt(2/178));&lt;BR /&gt;CI_2_lower=eig[2]/(1+1.645*sqrt(2/178));&lt;BR /&gt;CI_2_upper=eig[2]/(1-1.645*sqrt(2/178));&lt;BR /&gt;CI_3_lower=eig[3]/(1+1.645*sqrt(2/178));&lt;BR /&gt;CI_3_upper=eig[3]/(1-1.645*sqrt(2/178));&lt;BR /&gt;CI_4_lower=eig[4]/(1+1.645*sqrt(2/178));&lt;BR /&gt;CI_4_upper=eig[4]/(1-1.645*sqrt(2/178));&lt;BR /&gt;CI_5_lower=eig[5]/(1+1.645*sqrt(2/178));&lt;BR /&gt;CI_5_upper=eig[5]/(1-1.645*sqrt(2/178));&lt;/P&gt;</description>
      <pubDate>Sat, 10 Oct 2020 07:01:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690649#M5292</guid>
      <dc:creator>Jenkos</dc:creator>
      <dc:date>2020-10-10T07:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690653#M5293</link>
      <description>&lt;P&gt;Mathematically, you can only find eigenvalues/eigenvectors for a square matrix. This is what the error message is telling you. Apparently, you are passing in a 178 x 14 matrix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="sasError focus-line"&gt;&lt;FONT color="#FF0000"&gt;ERROR: (execution) Matrix should be square.&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;operation : EIGVAL at line 77 column 11&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;operands : x&lt;/DIV&gt;
&lt;DIV class="sasSource"&gt;&lt;FONT color="#800000"&gt;x 178 rows 14 cols (numeric)&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 10 Oct 2020 09:23:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690653#M5293</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-10-10T09:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690654#M5294</link>
      <description>&lt;P&gt;In multivariate statistics (such as principal component analysis), it is useful to find the eigenvalues of a correlation or a covariance matrix. Is that what you are trying to do? If so, use&lt;/P&gt;
&lt;P&gt;R = corr(X);&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;S = cov(X);&lt;/P&gt;
&lt;P&gt;to get the correlation or covariance matrix and then analyze the eigenvalues of R or S.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Oct 2020 09:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690654#M5294</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-10-10T09:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690772#M5295</link>
      <description>&lt;P&gt;you are right, I am here trying to&amp;nbsp;&lt;SPAN&gt;find the eigenvalues of a correlation matrix which is 179*14 matrix.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Tried running following command as you said, but got same errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc princomp data=THC;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/* 95% confidence intervals for the first to fifth eigenvalues */&lt;BR /&gt;proc iml;&lt;BR /&gt;reset print;&lt;BR /&gt;R=corr(THC);&lt;BR /&gt;eig=eigval(R);&lt;BR /&gt;E=eigvec(R);&lt;BR /&gt;alpha=0.05;&lt;BR /&gt;zright=quantile("Normal", 1-alpha/2);&lt;BR /&gt;CI_1_lower=eig[1]/(1+zright*sqrt(2/179));&lt;BR /&gt;CI_1_upper=eig[1]/(1-zright*sqrt(2/179));&lt;BR /&gt;CI_2_lower=eig[2]/(1+zright*sqrt(2/179));&lt;BR /&gt;CI_2_upper=eig[2]/(1-zright*sqrt(2/179));&lt;BR /&gt;CI_3_lower=eig[3]/(1+zright*sqrt(2/179));&lt;BR /&gt;CI_3_upper=eig[3]/(1-zright*sqrt(2/179));&lt;BR /&gt;CI_4_lower=eig[4]/(1+zright*sqrt(2/179));&lt;BR /&gt;CI_4_upper=eig[4]/(1-zright*sqrt(2/179));&lt;BR /&gt;CI_5_lower=eig[5]/(1+zright*sqrt(2/179));&lt;BR /&gt;CI_5_upper=eig[5]/(1-zright*sqrt(2/179));&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;DIV class="sasError"&gt;ERROR: (execution) Matrix has not been set to a value.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operation : CORR at line 75 column 7&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;operands : THC&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;THC 0 row 0 col (type ?, size 0)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;statement : ASSIGN at line 75 column 1&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89&lt;/DIV&gt;</description>
      <pubDate>Sun, 11 Oct 2020 09:47:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690772#M5295</guid>
      <dc:creator>lakshmishree</dc:creator>
      <dc:date>2020-10-11T09:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690773#M5296</link>
      <description>ERROR: (execution) Matrix has not been set to a value.&lt;BR /&gt;&lt;BR /&gt;operation : CORR at line 75 column 7&lt;BR /&gt;operands : THC&lt;BR /&gt;&lt;BR /&gt;THC 0 row 0 col (type ?, size 0)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;statement : ASSIGN at line 75 column 1&lt;BR /&gt;76&lt;BR /&gt;77 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;89</description>
      <pubDate>Sun, 11 Oct 2020 09:53:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690773#M5296</guid>
      <dc:creator>lakshmishree</dc:creator>
      <dc:date>2020-10-11T09:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690775#M5297</link>
      <description>&lt;P&gt;Same problem as last time: You aren't reading the data. You have to read the data into IML before you can use it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
use THC;
read all var _all_ into X;
close;

R = corr(X);
eig=eigval(R);
do i = 1 to 5;
  CI_lower=eig[i]/(1+1.645*sqrt(2/178));
  CI_upper=eig[i]/(1-1.645*sqrt(2/178));
  print i (eig[i])[L="eig"] CI_Lower CI_Upper;
end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Oct 2020 10:04:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690775#M5297</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-10-11T10:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690893#M5298</link>
      <description>Now i am able to print the Confidence interval values. Whereas, eigenvalues seems to be different from what i obtained. i Shall copy that code and the output i obtained from both:&lt;BR /&gt;&lt;BR /&gt;SAS code:&lt;BR /&gt;proc princomp data=THC;&lt;BR /&gt;var chem1 chem2 chem3 chem4 chem5 chem6 chem7 chem8 chem9 chem10 chem11 chem12 chem13;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;SAS output:&lt;BR /&gt;Eigenvalue&lt;BR /&gt;1 4.70585025&lt;BR /&gt;2 2.49697373&lt;BR /&gt;3 1.44607197&lt;BR /&gt;4 0.91897392&lt;BR /&gt;5 0.85322818&lt;BR /&gt;&lt;BR /&gt;Whereas when i am trying to run your code i obtain different eigenvalues which is actually of correlation matrix again, since i have "varieties" as another variable in the data and by reading all here, i assume it's including even that variable in it. Could you help me with what changes i would read only selected variables? that is if i want to read only variables : chem1 chem2 chem3 chem4 chem5 chem6 chem7 chem8 chem9 chem10 chem11 chem12 chem13&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Oct 2020 07:00:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690893#M5298</guid>
      <dc:creator>lakshmishree</dc:creator>
      <dc:date>2020-10-12T07:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690905#M5299</link>
      <description>&lt;P&gt;You can modify the READ statement like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  use THC;
  read all var ('chem1':'chem13') into X;
  close THC;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 12 Oct 2020 08:24:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/690905#M5299</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2020-10-12T08:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: 95% confidence intervals for the eigenvalues</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/691162#M5300</link>
      <description>&lt;P&gt;Thank you, it worked&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 08:07:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/95-confidence-intervals-for-the-eigenvalues/m-p/691162#M5300</guid>
      <dc:creator>lakshmishree</dc:creator>
      <dc:date>2020-10-13T08:07:00Z</dc:date>
    </item>
  </channel>
</rss>

