Problem 2037. Insert structure in a parameter-cell array.
When creating Matlab GUI elements, you can mix value pairs with structures in the list of input arguments, e.g.
uicontrol('tag','click',struct('position',[0 0 100 20]),'style','push')
Suppose you are creating a function that pre-processes the gui-creation call, and you want to convert the mix of both into a single cell array. That is what this assignment is about.
You are creating a function that converts a cell array that may contain structures into a cell array, with the newly added cells in the place of the structures.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers17
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2728 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1824 Solvers
-
240 Solvers
-
478 Solvers
-
Find the index of n in magic(n)
243 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!