ワークスペース上の変数をAppDesignerでプロットする
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mamoru Mabuchi
il 28 Mag 2020
Risposto: Kojiro Saito
il 28 Mag 2020
MATLABワークスペースから、AppDesigerへの変数の受け渡し方法がわかりません。
例えば下記のような変数x,yがMATLABのワークスペース上に定義されているとします。
x=1:10;
y=sin(x);
このAppDesigerでグラフをプロットするにはどのようにすれば良いでしょうか?
0 Commenti
Risposta accettata
Kojiro Saito
il 28 Mag 2020
evalinコマンドでワークスペースから変数を取ってくればできます。
座標軸を(app.UIAxes)をApp Designerの設計ビューに置いて、
以下のようなコマンドをアプリのstartupFcnやボタンのコールバックに入れてみてください。
x = evalin('base','x');
y = evalin('base','y');
plot(app.UIAxes, x, y)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su App Designer を使用したアプリ開発 in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!