SharedData

Shares arbitrary data among MATLAB instances using memory mapped files
79 téléchargements
Mise à jour 12 déc. 2016

Afficher la licence

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.

Citation pour cette source

Florian Enner (2024). SharedData (https://www.mathworks.com/matlabcentral/fileexchange/60691-shareddata), MATLAB Central File Exchange. Extrait(e) le .

Compatibilité avec les versions de MATLAB
Créé avec R2014b
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Dictionaries dans Help Center et MATLAB Answers
Remerciements

Inspiré par : SharedTransform

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.0.0.0