Loading and accessing the variables, fields and its data into the script from a mat file
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Kumar
el 29 de Oct. de 2020
Respondida: Ameer Hamza
el 29 de Oct. de 2020
Hello All,
I would like to load the mat file and access the fields ( multiple fields) and its data into a script.
Can you please guide me?
Thanks
0 comentarios
Respuesta aceptada
Ameer Hamza
el 29 de Oct. de 2020
This page shows how to access data in a strcut array: https://www.mathworks.com/help/matlab/matlab_prog/access-data-in-a-structure-array.html
For example, you can access the "Type" variable like this
XETK.Y(1).Type; % acess value of type in first row
XETK.Y(2).Type; % acess value of type in second row
..
..
XETK.Y(end).Type; % acess value of type in last row
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Workspace Variables and MAT Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!