SharedData

Shares arbitrary data among MATLAB instances using memory mapped files
78 descargas
Actualizado 12 dic 2016

Ver licencia

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.

Citar como

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

Compatibilidad con la versión de MATLAB
Se creó con R2014b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Dictionaries en Help Center y MATLAB Answers.
Agradecimientos

Inspirado por: SharedTransform

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0