To access a specific value in a structure array in MATLAB, you can use indexing. Here is an example of how to access the value of the first element in a structure array:
main.m190 chars7 lines
In this example, we define a structure array with two elements, each containing a field named "fieldname" with an array as its value. We then access the value of the first element in the second array by indexing into the structure with (2).fieldname(1), which returns the value 4.
gistlibby LogSnag