BookmarkSubscribeRSS Feed
bhfield
Calcite | Level 5

I am replicating Rick's Covariance / Correlation Cholesky transformation within Proc IML as follows:

proc iml;

  D = { 1 2 3,

  2 4 3,

  3 3 9};

  X = root(D)`*root(D);

  print D;

  print X;

run;

Interestingly, X does not equal D.  I am wondering if this is due to D not being Positive Definite or, in other words, Det(D) <0.  The code runs without any indication of a problem.....had I not printed X, I would have never known that that Root(D)`*Root(D) would not equal D.

Any thoughts on why this is the case?

2 REPLIES 2
Rick_SAS
SAS Super FREQ

Interesting. I've never seen this behavior before. The correct behavior would be for the ROOT function to report an error in the log:

ERROR: (execution) Matrix should be positive definite

If I were to guess, I'd say that the exact integer values are causing a numerical problem in the ROOT function such that the ROOT function does not report the error. In the following code I perturb an element by a tiny amount and the ROOT function correctly reports that the matrix is not PD:

D[1] = D[1] + 1e-8;

G = root(D);

I will enter a bug report at SAS so that someone can look into this situation further.

bhfield
Calcite | Level 5

Thanks Dr. Wicklin.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 2 replies
  • 946 views
  • 1 like
  • 2 in conversation