Create workspace file automatically.

2 次查看(过去 30 天)
Let's say I have:
a = {'one' 'two' 'three'};
b = [1 2 3];
I want each word create a file in workspace automatically and equal to number. Like:
one=1; two=2; three=3;

采纳的回答

Brett Shoelson
Brett Shoelson 2011-2-10
I think you mean "variable," not "file." Right?
for ii = 1:numel(a)
eval(sprintf('%s = %d',a{ii},b(ii)));
end
Cheers,
Brett

更多回答(2 个)

Walter Roberson
Walter Roberson 2011-2-10
This is generally considered poor programming and hard to maintain. Please see the FAQ answer on this topic for alternatives.

faizal
faizal 2011-2-10
It works. Thanks.
Yea it was 'variable' not 'file'.
Sorry

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by