BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
KGeorge
Calcite | Level 5

Could someone please help me out?

I have a matrix A={1 1,1 2,2 1,2 2,2 3,3 1}. I would like to create a block diagonal matrix (B) such that B={1 1 0 0 0 0, 1 2 0 0 0 0, 0 0 2 1 0 0, 0 0 2 2 0 0, 0 0 2 3 0 0, 0 0 0 0 3 1}. I know of the block function but it does not work here (in its basic form at least). How can I do this in IML? Is it possible without looping because the number of rows in A can get very large (millions or more)?

Lots of thanks in advance for your help.

George

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

You don't need to loop over rows of A; you can loop over the unique blocks defined by A.  Use the UNIQUE function on the first column of A to find out how many blocks there are. Then for each block, use the BLOCK function to iteratively build up the matrix.  For you example, the loop would have three iterations and be equivalent to the following statements:

B = A[1:2,];  /* initialize outside loop */

/* do i = 2 to 3; */

B = block(B, A[3:5,]);

B = block(B, A[6,]);

/* end do */

print B;

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

You don't need to loop over rows of A; you can loop over the unique blocks defined by A.  Use the UNIQUE function on the first column of A to find out how many blocks there are. Then for each block, use the BLOCK function to iteratively build up the matrix.  For you example, the loop would have three iterations and be equivalent to the following statements:

B = A[1:2,];  /* initialize outside loop */

/* do i = 2 to 3; */

B = block(B, A[3:5,]);

B = block(B, A[6,]);

/* end do */

print B;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1200 views
  • 0 likes
  • 2 in conversation