MATLAB: Trying to load the entire structure field but only able to get the first element

MATLABstructures

I have a structure array 147×1 with 5 fields.
Whenever I try
b=folderInfo.bytes
it only returns the first element, in this case 0. Is there a way to load the entire field as an array?
I'm expecting a result
b =
0
0
other number
other number
...
I've also attached a picture of a portion of my structure.

Best Answer

Try
allBytes = [folderInfo.bytes];
Related Question