ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
Réponse acceptée
MathWorks Support Team
le 24 Jan 2013
EVALIN 関数が使用できます。
例えば、ベースワークスペースに次のように変数を定義します。
x_base = magic(2);
ここで、次のように MATLABファンクショファイル内に記述すると、ベースワークスペース上の変数 x_base を関数ワークスペース上の変数 x_local に割り当てることができます。
function myfun
x_local = evalin('base','x_base');
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!