SharedData

Shares arbitrary data among MATLAB instances using memory mapped files

Sie verfolgen jetzt diese Einreichung

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.

Zitieren als

Florian Enner (2026). SharedData (https://de.mathworks.com/matlabcentral/fileexchange/60691-shareddata), MATLAB Central File Exchange. Abgerufen .

Quellenangaben

Inspiriert von: SharedTransform

Allgemeine Informationen

Kompatibilität der MATLAB-Version

  • Kompatibel mit allen Versionen

Plattform-Kompatibilität

  • Windows
  • macOS
  • Linux
Version Veröffentlicht Versionshinweise Action
1.0.0.0