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

I have defined a matrix m, and printed it and defined a module 'bcent' in proc iml.

Now I am trying to call it using:

call bcent(m,1,0);

but its throwing the error 'run executed for function module.

Any suggestion?

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

It sounds like you defined BCENT to be a funtion that returns a value. The RUN and CALL statements are only for modules that do not return values. Call it as

x = bcent(m,1,0);

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

It sounds like you defined BCENT to be a funtion that returns a value. The RUN and CALL statements are only for modules that do not return values. Call it as

x = bcent(m,1,0);

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1 reply
  • 1263 views
  • 0 likes
  • 2 in conversation