Clear Filters
Clear Filters

Working with Struct variable type in AppDesign.

4 views (last 30 days)
I have a struct type of file which consist of 61 other struct files. In each of these 61 files there are multiple .mat data files with differnet type of variables(most of them are doubles). I want to design an app to brows in each these 61 file and extract the data I am looking for. any hint where to start?
  5 Comments
Mario Malic
Mario Malic on 9 Dec 2020
Of course it is, I am not code this for you even though it's somewhat simple task, because if you need help with anything else afterwards, you'll have to ask again. So, as mentioned above, first part is the dir and load, to get the files and second one is playing with uitable to see the loaded data for each file.
Start with this to get the list of your mat files
S = dir('*.mat') % if files are in one folder
You can use the list to construct entries in your Tree component, then create a callback that would load file from selected node.
Lastly, display the loaded data in uitable

Sign in to comment.

Answers (0)

Categories

Find more on Structures 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!