ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
18 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
Risposta accettata
MathWorks Support Team
il 24 Gen 2013
EVALIN 関数が使用できます。
例えば、ベースワークスペースに次のように変数を定義します。
x_base = magic(2);
ここで、次のように MATLABファンクショファイル内に記述すると、ベースワークスペース上の変数 x_base を関数ワークスペース上の変数 x_local に割り当てることができます。
function myfun
x_local = evalin('base','x_base');
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!