MATLAB: How to convert struct to mat

structure

Dear sir
I'm writing to get some help. I want to convert from struct to mat… to substitute by its values in other matrix

Best Answer

You might be able to use
cell2mat( struct2cell( YourStructure ) )
but a lot depends on what is inside your structure.