How to multiply array by -1?

1 view (last 30 days)
Sean Roh
Sean Roh on 2 Mar 2021
I want to invert all the values in the array by -1.
[x,fs] = audioread('400hz.mp3'];
y=-1*x;
soundsc(y,fs);

Answers (1)

Sai Veeramachaneni
Sai Veeramachaneni on 5 Mar 2021
Hi,
You can use y = -x or y = -1.*x

Categories

Find more on Audio I/O and Waveform Generation in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!