音声データのmatファイル変換について
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
pcmファイルの録音データを短時間に区切った0.5秒ほどの変数データをワークスペース上にmatファイルで作成しました。matファイルをwavファイルに変換したいのですが以下のようにプログラムしたところ『関数または変数 'y' が未定義です。』とエラーが表示されるのはなぜでしょうか。
load('data.mat')
filename = 'data.wav';
audiowrite(filename,y,Fs);
3 Kommentare
Jiro Doke
am 9 Mai 2017
このエラーはよくあるエラーの一つですね。エラーの意味と原因の可能性を理解しておくと良いでしょう。
Kojiroさんも書かれましたが、 load('data.mat') で読み込まれた変数名を確認することをお勧めします。
参考:MATLAB の基本操作法はここから。
Antworten (0)
Siehe auch
Kategorien
Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!