Create workspace file automatically.

3 vues (au cours des 30 derniers jours)
faizal
faizal le 10 Fév 2011
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;

Réponse acceptée

Brett Shoelson
Brett Shoelson le 10 Fév 2011
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 commentaires
Brett Shoelson
Brett Shoelson le 10 Fév 2011
(But I agree with Walter.) :)
faizal
faizal le 10 Fév 2011
I accept that

Connectez-vous pour commenter.

Plus de réponses (2)

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

faizal
faizal le 10 Fév 2011
It works. Thanks.
Yea it was 'variable' not 'file'.
Sorry

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by