Make vectors the same size/sampling rate.
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi! I have two vector:
accel_x: 1 x 158479 (250 frames/s)
x: 1x16379 (60 frames/s)
This vectors correspond to the same time interval, wich is length(accel_x). How can I make the vectors the same size / sampling rate? I need to plot both vectors, to see their relationship through the time.
Many thanks!
댓글 수: 2
Guillaume
2018년 1월 26일
"This correspond to the same time interval"
Does it?
>>t_accell = 158479 / 250 %duration of 158479 at 250 frames/s
t_accell =
633.916
158479 frames at 250 frames/s is 633.916 seconds of sampling
>>t_x = 16379 / 60
t_x =
272.983
16379 frames at 60 frames/s is 272.983 seconds of sampling
Adam
2018년 1월 26일
@Ines Domingos Data does not need to have the same sample rate to plot it against each other. You plot x data vs y data for each one so they can have different x data to each other if they cover a similar range, but as Guillaume comments, they do not appear to have anywhere near the same range.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Quadratic Programming and Cone Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!