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 件のコメント
Stephen23
2021 年 3 月 2 日
Simpler:
y = -x;
回答 (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!