How to quickly view the variables in the mat file? My computer is poor, so it is slow to open matlabðŸ˜
7Â vues (au cours des 30Â derniers jours)
Afficher commentaires plus anciens
Because my computer is poor, every time I open matlab, it takes a long time to initialize before I can write code normally. Many times, I need to look mat data files when writing deep learning programs, such as using scipy and tensorlfow. If I need to wait a long time to open the whole matlab just to view one mat file, which makes me feel very frustrated.ðŸ˜
Therefore, I want to know if there are other softwares or methods that can quickly view the contents of mat files?
3Â commentaires
Stephen23
le 3 Fév 2023
Modifié(e) : Stephen23
le 3 Fév 2023
" I want to know if there are other softwares or methods that can quickly view the contents of mat files?"
Note that you can always specify which variables you want to import: see the LOAD() documentation. From within MATLAB you can use WHOS() to see what variables the MAT file contains:
or MATFILE() refer to the variables, without loading (all of) the data into memory:
Some other applications that natively work with MAT files and have similar functionality:
Réponses (2)
Walter Roberson
le 4 Fév 2023
https://comp.soft-sys.matlab.narkive.com/hkUdFzb0/quickly-list-variables-in-a-mat-file shows some C code that when compiled with the MATLAB API, should be able to list the names of variables in a .mat file
0Â commentaires
Voir également
Catégories
En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!