matファイルの変数データのスペクトル化について教えてください
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Yusaku Ando
il 1 Mag 2017
Risposto: Takuji Fukumoto
il 1 Mag 2017
pcmファイルの録音データを短時間に区切った0.5秒ほどの変数データをワークスペース上にmatファイルで作成しました。その後、以下のプログラム(最大エントロピー法)でスペクトル化を実行したところ『構造体の内容が非構造体配列オブジェクトから参照されています。』とのエラーが表示され実行できませんでした。原因を教えていただきたいです。
load data.mat; order = 37; [Pxx,F] = pyulear(data.mat,order,1024,Fs);
0 Commenti
Risposta accettata
Takuji Fukumoto
il 1 Mag 2017
引数で変数名を入れるところを保存したファイル名でいれていらっしゃるからかと推測します。
load data.mat;
の実行で出てくる変数はdataでしょうか。 その場合下記で実行されて、結果はどうでしょうか。
order = 37;
[Pxx,F] = pyulear(data,order,1024,Fs);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su スペクトル測定 in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!