System Identification Toolbox のspectrum(sys)の使い方
1 view (last 30 days)
Show older comments
Yoshifumi Harada
on 12 Mar 2020
前回サポート頂いた spectrum(sys)の使い方 再度確認しましたが、
以下のようにspectrum(sys)を 教材(Live Script) を以下のように、
test_data=readtable('test_data.xlsx','Sheet1','A1'); このように致しましたが
まず、確認後、試行しましたが、 応答結果がえられませんでした。
エクセルのスプレッドシートについてマイクロソフトに問い合わせましたが、
答えは得られませんでした。
>> load iddata9 z9
>> sys = ar(z9,4,'ls');
>> sys = ar(z9,4,'ls');
>> spectrum(sys);
>> test_data=readtable('test_data.xlsx','Sheet1','A1');
エラー: readtable (line 223)
無効なパラメーター名: Sheet1。
Format の指定は、これ以外の方法でどのように対処すればよいのか、
お教えくださいますよう、お願い致します。
0 Comments
Accepted Answer
Toshinobu Shintai
on 12 Mar 2020
readtableの仕様について、ご確認ください。以下のリンク先に書かれています。
シート名を指定したい場合は、
test_data = readtable("test_data.xlsx","Sheet","Run 1_ test_model")
のように、"Sheet", "シート名"と記述します。
0 Comments
More Answers (0)
See Also
Categories
Find more on 線形モデルの同定 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!