How to replace a character in matlab
2 ビュー (過去 30 日間)
古いコメントを表示
Stina Ravdna Lorås
2020 年 11 月 2 日
コメント済み: Stina Ravdna Lorås
2020 年 11 月 4 日
I want to use the string v in the audiofile name etc in the code below (all the v's). Tried with num2str() but that works probably just for numbers?
vocals=["a"; "e"; "i"; "o"; "u"; "y"; "ae"; "oe"; "aa"];
for i=1:9
v=vocals(i)
[v, Fs] = audioread('v.wav');
v_filter=lpc(v, 9);
end;
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!