![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1231532/image.png)
to change the amplitude of a .wav file
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Femi Okome
el 14 de Dic. de 2022
Comentada: Image Analyst
el 15 de Dic. de 2022
I am new to Matlab and im trying to change the amplitude of a .wav file. i have exported the data and Fs. i just dont know how to now increase/decreas the aplitude of the wav.
the code below shows what i have done,
thanks for any advice given.
plot(data);
soundsc(data,fs);
0 comentarios
Respuesta aceptada
Image Analyst
el 14 de Dic. de 2022
Try multiplying by a scaling factor:
amplificationFactor = 1.1; % Ten percent gain.
data = data * amplificationFactor;
plot(data);
sound(data, fs);
You might be interested in my File Exchange entry that allows you to plot the waveforms of all the files in a folder:
https://www.mathworks.com/matlabcentral/fileexchange/72431-plot-audio-file-waveforms?s_tid=srchtitle
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1231532/image.png)
2 comentarios
Image Analyst
el 15 de Dic. de 2022
You probably need to square the signal to get power then use the formula here:
Más respuestas (0)
Ver también
Categorías
Más información sobre Audio I/O and Waveform Generation 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!