标签: matlab
Matlab不允许通过索引来链接矩阵运算吗?
例如:
a = [1 2; 3 4]; exp(a)(:)
抛出错误
Error: ()-indexing must appear last in an index expression.
看起来这是我希望Matlab拥有的,或者有不同的方法来做到这一点?
答案 0 :(得分:1)
您不需要索引冒号。以下应该有效。
a = [1 2; 3 4]; exp(a);