load name im array

1 回表示 (過去 30 日間)
Manuel
Manuel 2017 年 7 月 10 日
回答済み: Walter Roberson 2017 年 7 月 10 日
Hello,
i have an issuse according to the load function.
load 'f(1)' % searches for a file called f(1)
what i want:
load the file named like the first entry in variable f
Thanks

採用された回答

Walter Roberson
Walter Roberson 2017 年 7 月 10 日
load(f{1})
However, please remember that it is bad practice to "poof" variables into the workspace. It is better to assign the output of load() to a variable and access the components as needed:
f1struct = load(f{1});
x = f1struct.x; %now access the stored values
y = f1struct.y;

その他の回答 (1 件)

KSSV
KSSV 2017 年 7 月 10 日
Hoping your f is a cell array of names of the files in the folder..you may use.
load f{1}
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 7 月 10 日
No, that is equivalent of load('f{1}')

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

カテゴリ

Help Center および File ExchangeDatabase Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by