error:Stateflow.JIT.Utils.relinkToExistingJITEngineの意図
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Simulinkのモデルの姿勢を最適化するGAをつくろうとしています
組み上げたGAや評価関数をまわそうとすると
エラー: Stateflow.JIT.Utils.getNameResolutionInfo (line 22)
false
というエラー文が出されます
GAはSimulinkモデルからデータをとるまえに止まるので、Simulinkモデルに問題があるのかと思い、Simulinkモデルだけを実行すると
が診断ビューアーに表示されました
内容を確認しましたが、意味を理解できず解決策がわかりません
どうすればこのエラーを解決できますか
GAの条件は以下のとおりです
clear %rng default
ObjectiveFunction = @gatry_0106_2;
nvars = 16; % Number of variables
a=0.4*ones(1,16);
lb=[0.5358 0.1153 -0.1983 -0.1973 -0.0999 0.0117 -0.0165 -0.0012 -0.0394 -0.09 0.0935 -0.0844 -0.0200 -0.0139 -0.0050 4.382e-06]-a;
ub=[0.5358 0.1153 -0.1983 -0.1973 -0.0999 0.0117 -0.0165 -0.0012 -0.0394 -0.09 0.0935 -0.0844 -0.0200 -0.0139 -0.0050 4.382e-06]+a;
Aineq=[0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -1];
bineq=0;
Aeq=[];
beq=[];
nonlcon=[];
options=optimoptions('ga','PopulationSize',30,'generations',20,'Display','iter','EliteCount',1,'PlotFcns','gaplotbestf','UseParallel',true );
[x,fval,exitflag]=ga(@gatry_0106_2,nvars,Aineq,bineq,Aeq,beq,lb,ub,nonlcon,options);
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur 診断の設定と表示 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!