Clear Filters
Clear Filters

May I know how convert tuple to dictionary in MATLAB

4 views (last 30 days)
Please see attached xls file. I want to convert tuple in column B to dictionary

Answers (1)

Walter Roberson
Walter Roberson on 21 Sep 2021
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/744999/New%20Microsoft%20Office%20Excel%20Worksheet.xlsx';
T = readtable(filename, 'readvariablenames', false);
dict = containers.Map(T{:,1}, str2double(T{:,2}))
dict =
Map with properties: Count: 1234 KeyType: char ValueType: double

Categories

Find more on Application Deployment in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!