ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
18 views (last 30 days)
Show older comments
ベースワークスペースの変数を関数ワークスペース上で使用したいのですが、どうすればよいですか?
Accepted Answer
MathWorks Support Team
on 24 Jan 2013
EVALIN 関数が使用できます。
例えば、ベースワークスペースに次のように変数を定義します。
x_base = magic(2);
ここで、次のように MATLABファンクショファイル内に記述すると、ベースワークスペース上の変数 x_base を関数ワークスペース上の変数 x_local に割り当てることができます。
function myfun
x_local = evalin('base','x_base');
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!