BookmarkSubscribeRSS Feed
Forecaster
Obsidian | Level 7
  1. Is it possible to access proc optlso in SAS/IML ?
  2. If yes, is it possible to provide few example from the documentation on SAS/IML ?

 

Thanks

3 REPLIES 3
Ksharp
Super User

I don't know what kind of product this proc optlso belong to.
But if you have license of it, you can invoke it in IML. I guess.
if you don't have its license, then you would be able to invoke it .

proc iml;
..........
submit;
proc optlso
......
endsub;
quit;


Rick_SAS
SAS Super FREQ

1. Yes

2. Yes, the SAS/IML documentation has examples. See the  chapter "Submitting SAS Statements," especially the section "Calling a Procedure."

 

If you prefer video to reading documentation, you can watch a short video "Calling SAS procedures fro mthe SAS/IML language."