SharedData

版本 1.0.0.0 (4.6 KB) 作者: Florian Enner
Shares arbitrary data among MATLAB instances using memory mapped files
78.0 次下载
更新时间 2016/12/12

查看许可证

SharedData provides a low overhead way to share arbitrary data between MATLAB instances using memory mapped files. Memory mapped files provide a simple way to share data without sockets or data marshalling.

% MATLAB instance - writer
data = [1 2 3];
output = SharedData('vec3', class(data), size(data));
output.data = data;

% MATLAB instance - reader
input = SharedData('vec3', 'double', [1 3]);
data = input.data;

Please consult the help documentation for more info.

引用格式

Florian Enner (2024). SharedData (https://www.mathworks.com/matlabcentral/fileexchange/60691-shareddata), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2014b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Dictionaries 的更多信息
致谢

参考作品: SharedTransform

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0