How to calculate mean to an equal area in Matlab?
    조회 수: 4 (최근 30일)
  
       이전 댓글 표시
    
I have 900000 time data and 900000 speed data. I need to calculate the mean speed for each 30secs and plot them. How can I get that? Thank you!
댓글 수: 2
채택된 답변
  James Tursa
      
      
 2021년 2월 22일
        
      편집: James Tursa
      
      
 2021년 2월 22일
  
      n = 3; % or whatever number of samples you need, must be divisible into size of data
time_average = mean(reshape(time_data,n,[]));
speed_average = mean(reshape(speed_data,n,[]));
plot(time_average,speed_average)
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

