Store values from for loop
2 views (last 30 days)
Show older comments
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?
- Is there anything similar to python dictionary: {'name1': tag1, 'name2': tag2, .... 'nameN': tagN}
- Or should it be stored in a table with two columns - name and tag
Thanks
3 Comments
darova
on 31 Jan 2020
What about simple char?
data= ['name1: tag1'
'name2: tag2'
'nameN: tagN']
Answers (1)
KSSV
on 31 Jan 2020
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
0 Comments
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!