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

I have two matrices H and K

H = 1 2 3

K = 10 20

I woulde like to repeat K for each value of H - any suggestions? The expected result will look like

1     10

1     20

2     10

2     20

3     10

3     20

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

For a 2D grid, use this module, which is adapted from the article "How to create a grid of values"

start ExpandGrid(_x1, _x2);

   x1 = colvec(_x1);  Nx = nrow(x1);

   x2 = rowvec(_x2);  Ny = ncol(x2);

   X = repeat(x1, 1, Ny);

   Y = repeat(x2, Nx);

   return ( colvec(X) || colvec(Y) );

finish;

View solution in original post

4 REPLIES 4
Rick_SAS
SAS Super FREQ
KPatra
Calcite | Level 5

Thanks Rick, I have IML 12.1 and it does not have that function.

Rick_SAS
SAS Super FREQ

For a 2D grid, use this module, which is adapted from the article "How to create a grid of values"

start ExpandGrid(_x1, _x2);

   x1 = colvec(_x1);  Nx = nrow(x1);

   x2 = rowvec(_x2);  Ny = ncol(x2);

   X = repeat(x1, 1, Ny);

   Y = repeat(x2, Nx);

   return ( colvec(X) || colvec(Y) );

finish;

KPatra
Calcite | Level 5

Works like a charm, thanks Rick.

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

Register now!

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