Can multiple processes read and write a .mat file at the same time?

I am working with an app that attempts to do live visualization of data being generated by a Simulink script. Is it safe for the simulink app to write to the mat file (mat v7.3) while another app reads from it? I know HDF5 supports SWMR, but not sure if that capability is inherited by the mat format.
Thanks!

댓글 수: 1

This smells like a recipe for file corruption. Did you find any documentation? And did you try to devise a test?

댓글을 달려면 로그인하십시오.

답변 (1개)

Ritika Thusoo
Ritika Thusoo 2025년 8월 14일

0 개 추천

Hi,
The Single-Writer/Multiple-Reader (SWMR) capability in MATLAB®'s low-level HDF5 function interface enables appending or overwriting data in datasets while multiple reader processes simultaneously access the updated data.
These reader and writer processes can operate on the same or different platforms, and the feature eliminates the need for inter-process communication or file locking.
You can read about this from this reference:

댓글 수: 1

Note that this functionality is not necessarily enabled for -v7.3 .mat files. Such files are layered on HDF5, but do not necessarily go through the necessary configuration.

댓글을 달려면 로그인하십시오.

제품

릴리스

R2021b

질문:

MP
2025년 8월 9일

댓글:

2025년 8월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by