How to quickly view the variables in the mat file? My computer is poor, so it is slow to open matlab😭

2 次查看(过去 30 天)
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 个评论
Stephen23
Stephen23 2023-2-3
编辑:Stephen23 2023-2-3
" 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:

请先登录,再进行评论。

回答(2 个)

dpb
dpb 2023-2-4
编辑:dpb 2023-2-4
Just leave a MATLAB session open, don't close it if you have such use/need frequently.
Or, if the content of these .mat files is at least relatively static; echo
whos -file matfilename
to a text file to refer to at will...

Walter Roberson
Walter Roberson 2023-2-4
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

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by