用matlab获取的泊松噪声的时域图
时间: 2024-05-01 18:23:42 浏览: 79
fingfou.zip_MATLAB泊松噪声
5星 · 资源好评率100%
生成泊松噪声的代码如下:
```
lambda = 5; % 泊松分布的参数
t = 0:0.001:10; % 时间范围
poisson_noise = poissrnd(lambda, 1, length(t)); % 生成泊松噪声
```
然后,可以使用 `plot` 函数将泊松噪声的时域图绘制出来:
```
plot(t, poisson_noise);
xlabel('Time (s)');
ylabel('Amplitude');
title('Poisson Noise in Time Domain');
```
其中,`xlabel` 和 `ylabel` 函数用于设置 x 轴和 y 轴的标签,`title` 函数用于设置图像的标题。
阅读全文