Retrieve MATLAB array value associated with a given key
returns MATLAB® data associated with the string
value
=
getmcruserdata(key
)key
in the current MATLAB Runtime instance. If there is no data
associated with the key, it returns an empty
matrix.
This function is part of the MATLAB Runtime User Data interface API. It is available both in MATLAB and in deployed applications created with MATLAB Compiler™ and MATLAB Compiler SDK™.
Get the magic square data associated with the string
'magic'
in the current instance
of the MATLAB Runtime.
value = magic(3); setmcruserdata('magic', value); getmcruserdata('magic')
ans = 8 1 6 3 5 7 4 9 2