MBC コマンドラインでのRBFの設定方法

3 次查看(过去 30 天)
Kyotaro Nishimoto
Kyotaro Nishimoto 2019-7-18
2016b Model-Based Calibration toolboxにてコマンドラインでモデル作成を行っています。RBFの設定(GUIであれば"Advanced"のボタンを押した先)の設定方法を教えていただけないでしょうか?たとえば

回答(2 个)

Kyotaro Nishimoto
Kyotaro Nishimoto 2019-7-19
意図したとおり設定できました。ありがとうございました。

Hiroshi Miyagawa
Hiroshi Miyagawa 2019-7-19
Model-Based Calibration toolboxに付属している以下のサンプルスクリプトをご参照するといいと思います。
このスクリプトのline140からRBFモデルを作っています。
例えば、このスクリプトをline150まで進めて、以下のコマンドをお試しください。
K>> m.FitAlgorithm.WidthAlgorithm
ans =
Algorithm: TrialWidths
Alternatives: 'WidPerDim','Tree Regression'
NestedFitAlgorithm: [1×1 mbcmodel.fitalgorithm]
Trials: 10
Zooms: 5
MinWidth: 0.0100
MaxWidth: 20
PlotFlag: 0
PlotProgress: 0
GUIで"Advanced"のボタンを押した先の"Number of trial width in each zoom"を変更したい場合は、以下のようにします。
K>> m.FitAlgorithm.WidthAlgorithm.Trials = 5;
また、"Lambda selection algorithm"配下の設定を変更したい場合は、以下のようにNestedFitAlgorithmを確認することでそれらの設定名を確認できますので、同じ要領で設定変更できます。
K>> m.FitAlgorithm.WidthAlgorithm.NestedFitAlgorithm
ans =
Algorithm: IterateRols
Alternatives: 'IterateRidge','StepItRols'
CenterSelectionAlg: [1×1 mbcmodel.fitalgorithm]
MaxNumIter: 10
Tolerance: 0.0050
NumberOfLambdaValues: 5
CheapMode: 1
PlotFlag: 0
以上、回答になりましたでしょうか?

类别

Help CenterFile Exchange 中查找有关 Model Assessment 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!