How can i change the timestep of my data set and reduce the number of data?

조회 수: 5 (최근 30일)
I have a set of data including 220 points (time,force). The time step is 0.004. I want to reduce the number of data to 186. Is that possible? Any help is appreciated...

채택된 답변

KSSV
KSSV 2018년 7월 16일
Read about interp1. Let t be your time data, and F be your force data.
ti = linspace(min(t),max(t),186) ;
Fi = interp1(t,F,ti) ;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by