<< cell2mat | Data structures | celldisp >> |
st = cell2struct(ce, fields) |
st = cell2struct(ce, fields, dim) |
a cell.
a cell of strings.
dimension along cell is converted.
a struct array.
st = cell2struct(ce, fields) creates a struct from a cell.
ce = {85, 50, 68; 'Pierre', 'Anna', 'Roberto'}
fields = {'Height','Name'}
A = cell2struct (ce, fields, 1)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET