How to change variables in simulink example

1 view (last 30 days)
HI,
New to MATLAB and Simulink.
Working from the current example:
and I want to edit it slightly!
I want to set my waypoints for the robot trajectory to follow a function f(x) (rather than trace coin boundaries like in the example). I change variables in the command window and then when i sim the simulink file it runs the standard example. I don't see any way to change variables in the simulink workspace. I'm clearly doing something wrong so would appreciate someone shedding some light.
Thanks

Answers (1)

Harshendra Shah
Harshendra Shah on 8 Apr 2020
Hi Adam,
You need to open the example using the following command:
openExample('robotics/TrajectoryControlThroughInverseKinematicsExample')
This will open a live script.
Now locate the code section where wayPoints is being updated. That section is on line 36.
You can update this section to use your function code and update the wayPoints variable as you want.
Now run the live script and you should probably get your desired results.
I hope this helps.

Community Treasure Hunt

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

Start Hunting!