BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
somebody
Lapis Lazuli | Level 10

How to perform matrix vectorization in PROC IML?

I would like to find vec(C). for example: 

C=  [1     2
     3     4]

vec(C)` = [1      3      2      4]  

 

1 ACCEPTED SOLUTION

Accepted Solutions
IanWakeling
Barite | Level 11

Take a look at the documentation for the SHAPECOL and SHAPE functions.   For example:

 

proc iml;
c = {1 2,
     3 4};
d = shapecol(c, 1, 4);
print d;

View solution in original post

2 REPLIES 2
IanWakeling
Barite | Level 11

Take a look at the documentation for the SHAPECOL and SHAPE functions.   For example:

 

proc iml;
c = {1 2,
     3 4};
d = shapecol(c, 1, 4);
print d;
somebody
Lapis Lazuli | Level 10

Thanks, 

I found another way which also works:

vec_c= colvec(c`);
print vec_c;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2 replies
  • 1151 views
  • 6 likes
  • 2 in conversation