examp46.m
来自「ADSP TOOLBOX: Version 2.0 and gui m-file」· M 代码 · 共 12 行
M
12 行
clc,echo on
%EXAMPLE 46
n=0:3;xn=[0, 1, 0, -1]; % DT index and Signal samples
yi=interpol(xn,'sinc',16); % Sinc interpolated signal
N=length(yi);ni=(0:N-1)/16; % Index for interpolated signal
dtplot(ni,yi,'o');pause(2) % Plot interpolated signal
M=5;yd=yi(1:M:N); % Decimate yi by 5
nd=ni(1:M:N); % DT array for resampled yd
dtplot(nd,yd,'o') % Plot resampled signal
echo off %end of example
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?