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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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