BookmarkSubscribeRSS Feed
Abyt
Calcite | Level 5

How to create idempotent matrix in sas/IML

6 REPLIES 6
PeterClemmensen
Tourmaline | Level 20

Any idempotent matrix?

Abyt
Calcite | Level 5
Thank you for your response. I need SAS/IML code to generate any idempotent matrix.
PeterClemmensen
Tourmaline | Level 20

Moved this thread to the IML Forum.

SAS_Rob
SAS Employee

One way to generate an idempotent matrix is to use the formula:
M=I-(1/n)*ii`

where I is the identity matrix, n is the number of rows, and i is a column vector of 1s of dimension n.

This matrix is by definition orthogonal so that the rows are independent.  

I have included an example below of how this can be done in IML.

proc iml;
n=5;
i=j(n,1,1);
M=i(5)-((1/n)*i*i`);
m2=m*m;*check for idempotency;
print m m2;
quit;

Rick_SAS
SAS Super FREQ

To create a matrix in SAS/IML, use curly brackets to begin/end the matrix. Use spaces to separate columns and use commas to indicate a new row. For example:

proc iml;

A = { 1  0,
        0   1};
Rick_SAS
SAS Super FREQ

If your question is answered, please mark an answer as "Accepted" and mark the question as "Resolved." Otherwise, please let us know what additional information you need.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 6 replies
  • 950 views
  • 5 likes
  • 4 in conversation