The description of interp said, 'interp inserts zeros into the original signal and then applies a lowpass interpolating filter to the expanded sequence'

3 ビュー (過去 30 日間)
The description of interp said, 'interp inserts zeros into the original signal and then applies a lowpass interpolating filter to the expanded sequence'. However, when i used interp to insert data into my oringal data, showing that data inserted isn't zero. Thanks!!!!!
before
after F1 = interp(F1,2)
  1 件のコメント
Walter Roberson
Walter Roberson 2022 年 9 月 16 日
The results returned by interp() are after the low pass filter.

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

回答 (1 件)

Jonas
Jonas 2022 年 9 月 16 日
the description says it inserts zeros AND applies the filter for interpolation. of course the filter changes the zero values.
if you want to just insert additional zeros, use the upsample function or simple dot notation like
sigUp(1:2:end)=oldSig

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by