Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column:
in:
S.foo = 'hello'; S.bar = 3.14;
out:
{'foo', 'hello';
'bar', 3.14}
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers2412
Suggested Problems
-
Determine whether a vector is monotonically increasing
22851 Solvers
-
Project Euler: Problem 5, Smallest multiple
1649 Solvers
-
Project Euler: Problem 7, Nth prime
1750 Solvers
-
Fix the last element of a cell array
1754 Solvers
-
2422 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
It is pretty strange that some solutions do not work even if they are equal
storedvars = fieldnames(S)
FirstVarName = storedvars{1:end}
FirstVarContent = S.(FirstVarName)
c = {storedvars,FirstVarContent}
I understand how the cell displayed.