how to down sample a vector?

21 次查看(过去 30 天)
I have a vector which contain 60 elements. I want to down sample it to have 54 elements.how can I do this?
  1 个评论
Max Murphy
Max Murphy 2017-9-10
I am going to try using downsample: https://au.mathworks.com/help/signal/ref/downsample.html

请先登录,再进行评论。

采纳的回答

Star Strider
Star Strider 2016-4-12
There are several ways, depending on what your vector is.
This approach is likely the simplest, and used interp1:
V = randi(99, 1, 60); % Vector
idx = 1:60; % Index
idxq = linspace(min(idx), max(idx), 54); % Interpolation Vector
Vi = interp1(idx, V, idxq, 'linear'); % Downsampled Vector
figure(1)
plot(idx, V, '-r')
hold on
plot(idxq, Vi, 'bp')
hold off
grid
legend('Original Vector', 'Downsampled Vector')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by