Getting the low and high years
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    desert_scientist90
 el 25 de Oct. de 2019
  
    
    
    
    
    Respondida: galaxy
      
 el 25 de Oct. de 2019
            Hi I have a table with z-scores per year, I am trying to get the z-scores with values greater that 1 and lower than -1. How can I do this on matlab?
Thanks for your help
0 comentarios
Respuesta aceptada
  galaxy
      
 el 25 de Oct. de 2019
        Let 's try 
load('zyrs.mat');
out = year_SPI(find(abs(year_SPI(:,2)) >1), :);
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre General Applications en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!