フィルターのクリア

Load constants from file

21 ビュー (過去 30 日間)
Macko
Macko 2011 年 7 月 1 日
Hi,
I'm looking for a way to load constants defined in an external file to the workspace, keeping their original names.
I generate a row of constants, using an external application, that looks like this:
A=1
B=2
C=3
Now, I'd like to load this data (which is stored in a file) into the Matlab workspace, preserving the constant names, so that, after the import, the A, B and C constants with the corresponding values are visible in the workspace and usable in my model.
I have full control on the imported file's format, too.
Any idea on how to achieve this, is greatly appreciated! Thank you!

採用された回答

Gerd
Gerd 2011 年 7 月 1 日
Hi Cristian,
you can use the eval('') command to do what you described. First you have to open the file, read line by line and
eval('A=1');
Then you have the variable in your base workspace.
Gerd
  2 件のコメント
Macko
Macko 2011 年 7 月 1 日
Thanks a lot!
I don't want to impose but do you happen to have some sample code on that?
Macko
Macko 2011 年 7 月 1 日
Solved! :)
fid = fopen('var.m');
while 1
tline = fgetl(fid);
if ~ischar(tline)
break
end
eval(tline)
end
Thank you so much!

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

その他の回答 (2 件)

Daniel Shub
Daniel Shub 2011 年 7 月 1 日
Another solution is to create a file, lets call it loadconstants.m. In that file just put
A=1;
B=2;
C=3;
Then when you want to load the constants simply type
loadconstants
  1 件のコメント
Macko
Macko 2011 年 7 月 1 日
Thanks! That would indeed be another possibility.

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


ravindra
ravindra 2011 年 7 月 2 日
Hello, I am also having same problem means I have a file name A which is having 12X36 matrix. I want to use it in my model which I am writting in .m file. So how to use this file in my program. Please help me Thank you
  1 件のコメント
Macko
Macko 2011 年 7 月 4 日
Can you post your file content? That might enable us to answer your question more precisely. Thanks!

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

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by