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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 6 replies
  • 1425 views
  • 5 likes
  • 4 in conversation