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.
R に Fortran サブルーチンに相当するものはありますか? さまざまな変数 (ファイル名、プロット制限など) を解析して実行したいスクリプトがあります。現時点では、コピーを作成し、新しいコピーごとにこれらをリセットしますが、これは少し面倒です。Fortran でできるように、何らかの方法でスクリプトを呼び出して、毎回変数を解析する方がよいでしょう。
次の関数を使用できます。
myProd <- function(x,y) { return(x*y) } z <- myProd(3,5) z [1] 15