BookmarkSubscribeRSS Feed
Mustafa86
Calcite | Level 5

 how to write the code for sample mean vector for 3*3 matrix in SAS iml the equation for it is attached in the document

the matrix is {1 2 -1,

                       2 4 4,

                      1 5 -2};

3 REPLIES 3
Reeza
Super User

MeanM = mean(myMatrix);
If you want it transposed, use the T()function.

IML functions are listed here
https://documentation.sas.com/?docsetId=imlug&docsetTarget=imlug_langref_sect253.htm&docsetVersion=1...

 


@Mustafa86 wrote:

 how to write the code for sample mean vector for 3*3 matrix in SAS iml the equation for it is attached in the document

the matrix is {1 2 -1,

                       2 4 4,

                      1 5 -2};


 

Ksharp
Super User

Post it at IML forum @Rick_SAS is there.

Rick_SAS
SAS Super FREQ
proc iml;
x = {1 2 -1,
     2 4 4,
     1 5 -2};

colMean = mean(x); /* means of each column */
print colMean;

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 2994 views
  • 2 likes
  • 4 in conversation