Skip to Main Content Skip to Search
Product Documentation

struct2cell - Convert structure to cell array

Syntax

c = struct2cell(s)

Description

c = struct2cell(s) converts the m-by-n structure s (with p fields) into a p-by-m-by-n cell array c.

If structure s is multidimensional, cell array c has size [p size(s)].

Examples

The commands

clear s, s.category = 'tree'; 
s.height = 37.4; s.name = 'birch';

create the structure

s = 
    category: 'tree'
      height: 37.4000
        name: 'birch'

Converting the structure to a cell array,

c = struct2cell(s)

c = 
    'tree'
    [37.4000]
    'birch'

See Also

cell | cell2struct | fieldnames | iscell | isstruct | struct

How To

  


Free MATLAB Interactive Kit

Explore how to use MATLAB to make advancements in engineering and science.


Download free kit

Trials Available

Try the latest version of MATLAB and other MathWorks products.


Get trial software
 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS