Extract Information Between M-Files
2 ビュー (過去 30 日間)
古いコメントを表示
If I want to pull an array from one file to another without defining global variables is there a command I can use?
0 件のコメント
採用された回答
Matt Kindig
2013 年 4 月 24 日
It depends how the m-files are defined. If they are scripts (that is, they are not defined by the 'function' keyword at the top), the variables defined in them are automatically added to the "base" workspace, which includes all variables included in all other script files that are run, regardless of whether they are defined as global or not.
If the m-files are functions, you will need to pass out the useful variables as output variables from your function. This is strongly preferred over using global variables.
This is best explained here:
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Whos についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!