How can i display field variables of structure in 'Variable' GUI as columns

8 views (last 30 days)
Hi,
I have a structure with multiple field variables that I would like to show up in the Variables GUI as a table (with field variables as columns, with individual cases as rows).
I have seen this done before when using the EEGLAB plugin (see attachment 1).
matlab_attachment1.png
But when i try to create my own structure - it just shows the field variables as a list (see attachment 2).
matlab_attachment2.png
How can i show my field variables as columns (like attachment 1)?
Cheers,
An
  5 Comments
Walter Roberson
Walter Roberson on 22 Jul 2019
The difference is that for EEGLAB, there is a struct array with multiple fields each of which is a scalar, whereas for your case, you have a scalar struct with multiple fields, each of which is vector.
beh_data = struct('RT', num2cell(EEG2.beh_data.RT), 'force', num2cell(EEG2.beh_data.force))

Sign in to comment.

Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!