标签: wolfram-mathematica
在Mathematica中使用一个变量定义函数是:f [x_]。 如何为更多变量编写函数?
答案 0 :(得分:0)
您可以使用逗号“,”分隔符:
f[x_Integer, y_Integer]
Here 还有更多示例可以使用默认选项或某种特殊类型等来创建函数。