在matlab中索引切片数组???

时间:2015-04-28 04:04:45

标签: arrays matlab list slice

我知道在matlab中索引数组存在一些众所周知的问题。但是,有一个特别是我从来没有理解过:

这很好用:

S =

     1     3     4     2
     4     5    24     1

v= S(1,:)

v =

     1     3     4     2

v(1)

ans =

     1

但这会引发错误:

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

这是为什么?我仍然不从高层次理解为什么这不起作用。
我是一名CS学生,所以,如果我有理由和/或概念推动这个错误,那就太好了。谢谢!

0 个答案:

没有答案