フィルターのクリア

Down-sampling with interp1

26 ビュー (過去 30 日間)
PPM
PPM 2016 年 1 月 8 日
コメント済み: PPM 2016 年 1 月 8 日
Hi,
I have a vector with 1500 rows, and I am trying to down-sample this using interp1 like this:
downsampled = interp1([1:length(original)],original,1:1:100);
However, it looks like the output "downsampled' is just a copy of the first 100 rows of original. Any hints on this?
Cheers

採用された回答

Walter Roberson
Walter Roberson 2016 年 1 月 8 日
oL = length(original);
downsampled = interp1(1:oL, original, linspace(1,oL,100));
However please think about whether you want 100 points output or 101 points output. If you want to divide into 100 segments of equal length then you want 101 points output.
  1 件のコメント
PPM
PPM 2016 年 1 月 8 日
Thanks Walter. Indeed, I need 101 points. Regards

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by