SImulink PurePursuit error; trajectory problem (Version:R2023a)

3 Ansichten (letzte 30 Tage)
Hi.
I'm getting an error with the PurePursuit simulink block.
The error is "Excepted waypoints to be an array with number of columns equal to 2"
I also attached a minimally working Simulink file (Version:R2023a).
Thank you
Josh
  1 Kommentar
Walter Roberson
Walter Roberson am 14 Okt. 2023
This does not appear to be using the Mathworks Robotics System Toolbox; it appears to be using the Peter Corke Robotics Toolbox. Peter Corke's toolbox is well respected for robotics work, but it is a third-party toolbox.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Remo Pillat
Remo Pillat am 30 Nov. 2023
Hi Joshua,
There are two problems with your current model
  1. The "trajectory" block from Peter Corke's toolbox will output a waypoint as a 1-D vector (column vector internally). To get it into the [Nx2] format that Aishwarya mentioned, you need to add a "Transpose" block between the "trajectory" and the "Pure Pursuit" block.
  2. The "trajectory" block from Peter Corke's toolbox only give you the waypoint at the time instant of the Simulink simulation, not the whole trajectory (the output will always be 1x2). For the "Pure Pursuit" block to work correctly, you need to provide a full trajectory, i.e. multiple waypoints in an Nx2 matrix. I suggest you just create your own trajectory with a MATLAB Function block or an Interpreted MATLAB Fcn block. You can probably call the trajectory tools in Peter's toolbox directly in MATLAB.

Weitere Antworten (1)

Aishwarya
Aishwarya am 25 Okt. 2023
Hi Joshua,
As per my understanding, you are facing error in your Simulink model which points that waypoints are not in correct dimension as required by the ‘Pure Pursuit’ block.
Below are some suggestions that can help resolve the error:
  • Ensure that the ‘waypoints’ input to the ‘Pure Pursuit’ block is an n-by-2 array of [x y] pairs, where ‘n’ is number of waypoints.
  • The waypoints can be specified as an array in Simulink.
Please refer to below MathWorks documentation for more details on ‘Pure pursuit’ block:
I hope this helps.

Kategorien

Mehr zu Robotics finden Sie in Help Center und File Exchange

Produkte


Version

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by