Read vector until last value, or NANs start
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    David Pesetsky
      
 el 8 de Jul. de 2018
  
    
    
    
    
    Comentada: David Pesetsky
      
 el 8 de Jul. de 2018
            I have a vector array with an unknown number of entries. Either it will end nicely with the last entry being a number, or nans will start populating. I just need the index of the last actual number, not knowing if there's a next entry, or if the next is a nan.
Can you help?
Thanks!
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 8 de Jul. de 2018
        lastidx = find(isnan(YourVector),1) - 1;
if isempty(lastidx); lastidx = length(YourVector); end
Más respuestas (0)
Ver también
Categorías
				Más información sobre NaNs en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

