I have a sound signal x(n). i want to make a random signal r(n) of the same length but half the magnitude of x(n). How do i make r(n) have half the magnitude of x(n)?

1 visualización (últimos 30 días)
I have a sound signal x(n). i want to make a random signal r(n) of the same length but half the magnitude of x(n). How do i make r(n) have half the magnitude of x(n)?

Respuesta aceptada

Star Strider
Star Strider el 19 de Jun. de 2016
Random signals are of course random, so its being exactly half the amplitude is probably not going to be the situation everywhere. You can scale the randn output by multiplying it by the standard deviation you want, so:
signal = ...; % Signal Vector
noise = std(signal)*0.5*randn(size(signal)); % Noise Vector
This scales the noise vector to be 0.5 times the standard deviation of your signal vector. That is probably as close as you can get to what you want to do.
  4 comentarios
Saiankita Anand
Saiankita Anand el 19 de Jun. de 2016
Thank you, Star Strider for your help. I am fairly new to MATLAB and hence the confusion. I kinda did understand what you are saying here. Allow me to ask you if I have further doubts in this.
Star Strider
Star Strider el 19 de Jun. de 2016
My pleasure, as always.
I will answer as many of your questions as I have the knowledge to provide.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Spectral Measurements 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!

Translated by