Display all ROS message contents
details = showdetails(msg)
example
details = showdetails(msg) gets all data contents of message object msg. The details are stored in details or displayed on the command line.
details
msg
collapse all
Create a message. Populate the message with data using the relevant properties.
msg = rosmessage('geometry_msgs/Point'); msg.X = 1; msg.Y = 2; msg.Z = 3;
View the message details.
showdetails(msg)
X : 1 Y : 2 Z : 3
Message
ROS message, specified as a Message object handle.
Details of a ROS message, returned as a character vector.
rosmessage
You have a modified version of this example. Do you want to open this example with your edits?