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

Hello,

 

I am trying to multiply a matrix and a vector with proc iml, but I never used it,.

 

Basically, I already have the two datasets that I need, one MATRIX and one VECTOR.

 

I simply want the resulting vector of the multiplication of MATRIX*VECTOR in a new dataset with one variable named RESULT.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Better post is at IML forum, since it is a IML question.

 

data matrix;
 set sashelp.class;
 keep age weight height;
run;
data vector;
 do vector=1 to 3;
  output;
 end;
run;

proc iml;
use matrix;
read all var _num_ into matrix;
close;
use vector;
read all var {vector};
close;

result=matrix*vector;

create result var {result};
append;
close;
quit;

View solution in original post

3 REPLIES 3
TomKari
Onyx | Level 15

Here's an introductory resource to PROC IML that I hope you'll find helpful. Rick also publishes "The DO Loop" blog for SAS.

 

http://support.sas.com/resources/papers/proceedings13/144-2013.pdf

 

In the future, I suggest you post IML questions to the Analytics / SAS/IML area. The Enterprise Guide area tends to get questions about the EG interface, and the IML folks don't tend to watch it.

 

Tom

x2PSx
Calcite | Level 5
Thank you, will do!
Ksharp
Super User

Better post is at IML forum, since it is a IML question.

 

data matrix;
 set sashelp.class;
 keep age weight height;
run;
data vector;
 do vector=1 to 3;
  output;
 end;
run;

proc iml;
use matrix;
read all var _num_ into matrix;
close;
use vector;
read all var {vector};
close;

result=matrix*vector;

create result var {result};
append;
close;
quit;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 3207 views
  • 0 likes
  • 3 in conversation