Find the index value of first and last element in the vector ?
25 次查看(过去 30 天)
显示 更早的评论
Find the index value of first and last element in the vector ?
command
0 个评论
回答(2 个)
Walter Roberson
2013-12-1
index_of_first = 1;
index_of_last = length(YourVector);
If you mean an element with a particular value, then
index_of_first = find(YourVector == TheValue, 1, 'first');
index_of_last = find(YourVector == TheValue, 1, 'last');
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!