Module workspace

Module workspace 

Source
Expand description

Workspace related functions

Matlab has several functions in the MEX API which deal with getting variables from, and putting them into workspaces. This module wraps that functionality.

Enums§

WorkSpace
Possible workspaces to put your variable

Functions§

get_variable
Copy a variable out of a specified workspace. Returns None if the variable does not exist in that workspace.
get_variable_ref
Get a reference to a variable named name in a specified workspace. If not present, this function returns None.
put_variable
Put an MxArray in a workspace with a specified name, overwriting when a variable with that name already exists.