To get the actual value from a cell into a structure in Matlab, you can use curly braces to access the cell value and assign it to a structure field. Here's an example:
main.m278 chars11 lines
Now you can access the values in the structure like this:
main.m125 chars12 lines
Note that the curly braces {}
are used to access the cell value, and the dot .
is used to create the structure field.
gistlibby LogSnag