BookmarkSubscribeRSS Feed
bri11
Calcite | Level 5

what is an example of a subroutine module with 2 parameters, a constant and a square matrix.

that adds the constant value to every element of the diagonal of the matrix, and passes  the result

back in a new parameter? I'm having a hard time understanding this stuff so lots of comments would

be unbelievably helpful.

1 REPLY 1
Hutch_sas
SAS Employee

proc iml;

start AddToDiag( result, A, B);

    /* add B to diagonal of a square matrix A */

    result = A + diag(  j(nrow(A),  1,   B)  );

finish;

/* test it out */

m = {1 1 1,

        2 2 2,

        3 3 3 };

lambda = 3;

run AddToDiag( MPlusLambda, m, lambda);

print M lambda MPlusLambda;

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 1 reply
  • 1255 views
  • 0 likes
  • 2 in conversation