how to do structs from excel in matlab?

how can we do a struct that contains the data from a sheet from excel with strings and numbers

Antworten (1)

Image Analyst
Image Analyst am 21 Dez. 2021

0 Stimmen

You can do
[numbers, strings, rawCA] = xlsread(fileName);
to get data from Excel. To put that into a structure variable in MATLAB you need to manually assign the fields, like if s is your structure
s.numbers = numbers;
s.strings = strings;
s.ca = rawCA;
Now s is a structure.

Gefragt:

am 21 Dez. 2021

Beantwortet:

am 21 Dez. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by