Find the index value of first and last element in the vector ?

Answers (2)

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');

Categories

Tags

No tags entered yet.

Asked:

on 1 Dec 2013

Answered:

on 1 Dec 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!