EVALIN 関数が使用できます。
例えば、ベースワークスペースに次のように変数を定義します。
x_base = magic(2);
ここで、次のように MATLABファンクショファイル内に記述すると、ベースワークスペース上の変数 x_base を関数ワークスペース上の変数 x_local に割り当てることができます。
function myfun
x_local = evalin('base','x_base');
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!