access nested struct from excel to matlab
Mostrar comentarios más antiguos
I have a struct on a cell in matlab. How can i open this struct by code ?

Respuestas (1)
myStruct.d = rand(1,10); % struct with data
Par1 = {myStruct}; % nested in cell
Data = Par1{1}.d % access data
1 comentario
Tran Anh
el 18 de Nov. de 2022
Categorías
Más información sobre Structures en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!