SharedData
バージョン 1.0.0.0 (4.57 KB) 作成者:
Florian Enner
Shares arbitrary data among MATLAB instances using memory mapped files
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 (2026). SharedData (https://jp.mathworks.com/matlabcentral/fileexchange/60691-shareddata), MATLAB Central File Exchange. 取得日: .
MATLAB リリースの互換性
作成:
R2014b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linuxカテゴリ
Help Center および MATLAB Answers で Dictionaries についてさらに検索
タグ
謝辞
ヒントを得たファイル: SharedTransform
| バージョン | 公開済み | リリース ノート | |
|---|---|---|---|
| 1.0.0.0 |
