Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
proc iml で 1 つのモジュールを作成し、call fuctiong と指定されたパラメーターを使用してそれを呼び出そうとしました。
しかし、それはエラーをスローします:関数モジュールに対して実行された実行。
なにか提案を?
エラーメッセージは、値を返す関数 (「関数モジュール」) を定義したことを示しているため、次のように呼び出す必要があります。 x = MyFunction(x,y,z);
CALL ステートメントを使用して関数を呼び出すことはできません。値を返さないサブルーチンを呼び出すだけです。