SharedData

Shares arbitrary data among MATLAB instances using memory mapped files
80 download
Aggiornato 12 dic 2016

Visualizza la licenza

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.

Cita come

Florian Enner (2025). SharedData (https://it.mathworks.com/matlabcentral/fileexchange/60691-shareddata), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2014b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Dictionaries in Help Center e MATLAB Answers
Riconoscimenti

Ispirato da: SharedTransform

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0