multi level indexing acess
1 次查看(过去 30 天)
显示 更早的评论
I want to get output from below code but Matlab thrown Error:
[1 2 3 4](2)
My desired output is 2.
Note: I need one line answer without using any function.
Thanks
0 个评论
回答(2 个)
Walter Roberson
2015-6-14
编辑:Walter Roberson
2015-6-14
I would probably use something like:
Index = @(V,K) V(K);
and then Index([1 2 3 4],2)
If I felt especially obscure there would always be
subsref([1 2 3 4], struct('type','()','subs', {[2]})
which is what will happen internally
0 个评论
Azzi Abdelmalek
2015-6-14
编辑:Azzi Abdelmalek
2015-6-14
v=[1 2 3 4]
v(2)
If you want one line, then just write
v=2
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!