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
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;
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;
Thanks Rick
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 16. Read more here about why you should contribute and what is in it for you!
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.