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;
这是我在方波中添加噪声的代码。 现在我想在中点采样。
答案 0 :(得分:0)
使用线性插值calcY = interp1q(t,y,t2)
。 t2
将是中点的t值。 calcY
将是中点的样本值,使用线性插值估算。 interplq
功能的链接为here。