标签: matlab mathematica-8
Mathematica代码如下:
In:Map[Function[x, x + 1], {1, 2, 3}] Out:{2, 3, 4}
如何使用类似的方法在MATLAB中实现该表达式?
答案 0 :(得分:1)
我不知道它是否仍然有用,但是看起来您正在搜索arrayfun()函数:
arrayfun()
y = arrayfun(@(x) x+1, [1 2 3])
希望有帮助!