在Matlab中使用索引进行矩阵运算的链接

时间:2014-03-08 20:42:59

标签: matlab

Matlab不允许通过索引来链接矩阵运算吗?

例如:

a = [1 2; 3 4];
exp(a)(:)

抛出错误

Error: ()-indexing must appear last in an index expression.

看起来这是我希望Matlab拥有的,或者有不同的方法来做到这一点?

1 个答案:

答案 0 :(得分:1)

您不需要索引冒号。以下应该有效。

a = [1 2; 3 4];
exp(a);