MATLAB: How to Read this Code in English

struct

I am not an English-speaking person. How is the correct way to describe the code below with words?
A.B.C = 1

Best Answer

There is a structure called "A".
"A" has a "field" or "member" called "B".
"B" is also a structure, and it has a field called "C".
The code is setting the C field to 1.
Related Question