MATLAB: How to create a structure inside a structure

structures

I have to create a structure called rover that contains a structure called wheel assembly inside it. How do I go about doing this?

Best Answer

Example
a=struct('rover',struct('assembly',{1 2 3}))