How to multiply array by -1?
显示 更早的评论
I want to invert all the values in the array by -1.
[x,fs] = audioread('400hz.mp3'];
y=-1*x;
soundsc(y,fs);
回答(1 个)
Sai Veeramachaneni
2021-3-5
0 个投票
Hi,
You can use y = -x or y = -1.*x
类别
在 帮助中心 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!