Connect to a ROS network. Create a parameter tree and check for the 'MyParam' parameter.
rosinit
The value of the ROS_MASTER_URI environment variable, http://172.23.70.93:56568, will be used to connect to the ROS master.
Initializing global node /matlab_global_node_25344 with NodeURI http://172.23.70.93:38873/ and MasterURI http://172.23.70.93:56568.
ptree = rosparam;
has(ptree,'MyParam')
ans = logical
0
Set the 'MyParam' parameter and verify it exists. Disconnect from ROS network.
set(ptree,'MyParam','test')
has(ptree,'MyParam')
ans = logical
1
rosshutdown
Shutting down global node /matlab_global_node_25344 with NodeURI http://172.23.70.93:38873/ and MasterURI http://172.23.70.93:56568.