MBC コマンドラインでのRBFの設定方法
2 views (last 30 days)
Show older comments
2016b Model-Based Calibration toolboxにてコマンドラインでモデル作成を行っています。RBFの設定(GUIであれば"Advanced"のボタンを押した先)の設定方法を教えていただけないでしょうか?たとえば
0 Comments
Answers (2)
Hiroshi Miyagawa
on 19 Jul 2019
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
以上、回答になりましたでしょうか?
0 Comments
See Also
Categories
Find more on Model Assessment 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!