フィルターのクリア

How to call/include/load one m file in another m file?

19 ビュー (過去 30 日間)
Micky
Micky 2013 年 4 月 12 日
コメント済み: Aboli Ruikar 2017 年 9 月 26 日
I have a huge matlab program (.m file) which is a higher level model of some design and this program has bunch of variables. I want to store these variables in different/separate matlab file which should be .m file. So, I want in this way because I want to make changes with the variable values and run the original matlab program, basically run experiments with the model with new variable values. I know we can store varibles in mat file but it is not writable. So, basically my question comes down to this, I can store varibales in a separate m file but everytime I run the original program, how can I include and load the variables (m file) in the original matlab program file (m file)?
  4 件のコメント
Micky
Micky 2013 年 4 月 16 日
Thanks Matt, it solved my problem.
Aboli Ruikar
Aboli Ruikar 2017 年 9 月 26 日
Thank you !!

サインインしてコメントする。

回答 (1 件)

per isakson
per isakson 2013 年 4 月 12 日
編集済み: per isakson 2013 年 4 月 12 日
There are many more or less smelly alternatives, one of which is a "data class". Example:
classdef MyInput
properties ( Constant = true )
p01 = 17;
end
end
refer to the data in your huge program with
>> MyInput.p01
ans =
17
This approach helps make your code a bit more readable.
"... make changes with the variable values ..." - how many variable?
  1 件のコメント
Micky
Micky 2013 年 4 月 16 日
Thanks per isakson!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeApp Building についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by