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;

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
  • 1 reply
  • 991 views
  • 0 likes
  • 2 in conversation