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