Mathematica 的地图在 MATLAB 中的等价物是什么?
What is the MATLAB equivalent of Mathematica's Map?
Mathematica代码如下:
In:Map[Function[x, x + 1], {1, 2, 3}]
Out:{2, 3, 4}
如何用类似的方法在MATLAB中实现这个表达式?
我不知道它是否仍然相关,但看起来您正在搜索 arrayfun()
函数:
y = arrayfun(@(x) x+1, [1 2 3])
希望对您有所帮助!
Mathematica代码如下:
In:Map[Function[x, x + 1], {1, 2, 3}]
Out:{2, 3, 4}
如何用类似的方法在MATLAB中实现这个表达式?
我不知道它是否仍然相关,但看起来您正在搜索 arrayfun()
函数:
y = arrayfun(@(x) x+1, [1 2 3])
希望对您有所帮助!