Store values from for loop

2 次查看(过去 30 天)
Alisher Narzulloev
Alisher Narzulloev 2020-1-31
I am looping through files (using for loop) and getting two values from each loop - name and tag. What is the best way to store these values, if I later want to access tags using names?
  1. Is there anything similar to python dictionary: {'name1': tag1, 'name2': tag2, .... 'nameN': tagN}
  2. Or should it be stored in a table with two columns - name and tag
Thanks
  3 个评论
darova
darova 2020-1-31
What about simple char?
data= ['name1: tag1'
'name2: tag2'
'nameN: tagN']
Alisher Narzulloev
Alisher Narzulloev 2020-1-31
Tag is one string value. I also believe table is the best approach. Thanks.

请先登录,再进行评论。

回答(1 个)

KSSV
KSSV 2020-1-31
names = cell(N,1) ;
tags = cell(N,1) ;
for i = 1:N % N is number of files
% get names and tages
names{i} = name ;
tags{i} = tag ;
end

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by