How to assign two identifiers to a vector of n values.
1 次查看(过去 30 天)
显示 更早的评论
Hi, I need to assign two identifiers to a vector of n values like V i,j in a way that V is not a cell but it is a vector of n values. How can I do that
0 个评论
采纳的回答
Azzi Abdelmalek
2013-12-1
编辑:Azzi Abdelmalek
2013-12-1
V=[2 4;5 8] % V is a matrix not a vector
i=1;
j=2;
V(i,j)
Look at
doc array
3 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!