フィルターのクリア

The 'sdpvar' class does not support code generation.

33 ビュー (過去 30 日間)
Jianhui Zhi
Jianhui Zhi 2017 年 10 月 14 日
コメント済み: Jianhui Zhi 2017 年 10 月 19 日
This problem occurs during the usage of Yalmip R20150204 toolbox in either 'S-function' or 'MATLAB Function' of Simulink. The input variables are Ru, W_est,and v. The output variables are s and u. The code is shown as follows(Matlab version R2014a). How can I make the Yalmip R20150204 toolbox work in Simulink module,either 'S-function' or 'MATLAB Function'? Bv = 1; B = [1 1 1]; n = size(B,1); m = size(B,2); s = sdpvar(n,1); u = sdpvar(m,1); Q = eye(n); % constraints F1=[B*W_est*u==Bv*v+s]; F2=[F1, u<=5*ones(m,1), u>=-5*ones(m,1)]; solvesdp(F2, 10^5*s'*Q*s+u'*Ru*u); s= double(s); u= double(u);

採用された回答

Johan Löfberg
Johan Löfberg 2017 年 10 月 18 日
https://yalmip.github.io/example/simulink/
  1 件のコメント
Jianhui Zhi
Jianhui Zhi 2017 年 10 月 19 日
Thank you so much for this wonderful answer in such a detail. The problem is finally well-addressed.
Thank you again and best wishes.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange多核处理器目标 についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!