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

25 visualizaciones (últimos 30 días)
Shah
Shah el 1 de Dic. de 2013
Respondida: Azzi Abdelmalek el 1 de Dic. de 2013
Find the index value of first and last element in the vector ?
command

Respuestas (2)

Walter Roberson
Walter Roberson el 1 de Dic. de 2013
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');

Azzi Abdelmalek
Azzi Abdelmalek el 1 de Dic. de 2013
x=[2 1 0 4 10 20 4 3 1]
[~,idx_first]=min(x)
[~,idx_last]=max(x)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by