我想在方波的中点取样?

时间:2015-10-18 11:39:42

标签: matlab

t=0:0.001:8;
x=square(pi*t,50);
y = awgn(x,4);
plot (t,x+y);
axis ([0 8 -1 1]);
xlabel ('Time');
ylabel ('Amplitude');
grid on;

这是我在方波中添加噪声的代码。 现在我想在中点采样。

1 个答案:

答案 0 :(得分:0)

使用线性插值calcY = interp1q(t,y,t2)t2将是中点的t值。 calcY将是中点的样本值,使用线性插值估算。 interplq功能的链接为here