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

Is there a way to write the 5th line below so that it works (while keeping it within a single expression / single line) ?

More generally, how can a vector be initiated by specifying formulas instead of values for each element?

 

proc iml;
	x = j(3,2,.);
	do i = 1 to nrow(x);
		/*this doesn't work*/
		x[i,] = { i 0 };

		/*this does work, but it's an extra line */
		x[i,1] = i;
		x[i,2] = 0;
	end;
quit
1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

The direct answer to your question is to use the horizontal concatenation operator (||)

x[i,] = i || 0;

as described in the article "How to build a vector from expressions."

 

Of course, for this example, you don't need a loop at all:

proc iml;
x1 = T( 1:3 );
x2 = j(nrow(x1), 1, 0);
x = x1 || x2;

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

The direct answer to your question is to use the horizontal concatenation operator (||)

x[i,] = i || 0;

as described in the article "How to build a vector from expressions."

 

Of course, for this example, you don't need a loop at all:

proc iml;
x1 = T( 1:3 );
x2 = j(nrow(x1), 1, 0);
x = x1 || x2;

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 16. 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
  • 918 views
  • 0 likes
  • 2 in conversation