MATLAB与Mathematica的地图等效吗?

时间:2019-04-08 12:43:04

标签: matlab mathematica-8

Mathematica代码如下:

In:Map[Function[x, x + 1], {1, 2, 3}]
Out:{2, 3, 4}

如何使用类似的方法在MATLAB中实现该表达式?

1 个答案:

答案 0 :(得分:1)

我不知道它是否仍然有用,但是看起来您正在搜索arrayfun()函数:

y = arrayfun(@(x) x+1, [1 2 3])

希望有帮助!