how to generate a( 226 × 1 ) vector "b" as a zero mean white Gaussian noise (WGN) sequence with variance =0.24e-4 ?

6 次查看(过去 30 天)
b=wgn(256,1,??)
with var(p)=0.24e-4

采纳的回答

William Rose
William Rose 2021-11-2
编辑:William Rose 2021-11-2
b=wgn(226,1,.24e-4,'linear');
fprintf('Variance of b=%6f\n',var(b))
Variance of b=0.000024
If you run the code above multiple times, you will get slightly different results, since it is (pseudo)random.
  4 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by