How Create Pentad average
    9 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    MattyK
 el 9 de Jul. de 2019
  
    
    
    
    
    Comentada: Yash Totla
      
 el 9 de Jul. de 2019
            Good day.Is there a way to create pentad average in Matlab?. Thanks.
0 comentarios
Respuesta aceptada
  Yash Totla
      
 el 9 de Jul. de 2019
        You can calculate the 5 point moving average using the MATLAB function movmean
pentadAvg = movmean(dataArray, 5)
2 comentarios
  Yash Totla
      
 el 9 de Jul. de 2019
				movmean will return the 5 day moving average
pentadAvg(3) = average(day1, day2, day3, day4, day5)
pentadAvg(4) = average(day2, day3, day4, day5, day6)
Are you expecting the following result instead
pentad(1) = average(day1, day2, day3, day4, day5)
pentad(2) = average(day6, day7, day8, day9, day10)
Más respuestas (0)
Ver también
Categorías
				Más información sobre Language Fundamentals 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!

