how to generate a( 226 × 1 ) vector "b" as a zero mean white Gaussian noise (WGN) sequence with variance =0.24e-4 ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ad lyn
el 2 de Nov. de 2021
Comentada: William Rose
el 4 de Nov. de 2021
b=wgn(256,1,??)
with var(p)=0.24e-4
0 comentarios
Respuesta aceptada
William Rose
el 2 de Nov. de 2021
Editada: William Rose
el 2 de Nov. de 2021
b=wgn(226,1,.24e-4,'linear');
fprintf('Variance of b=%6f\n',var(b))
If you run the code above multiple times, you will get slightly different results, since it is (pseudo)random.
4 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!