Azzera filtri
Azzera filtri

SImulink PurePursuit error; trajectory problem (Version:R2023a)

1 visualizzazione (ultimi 30 giorni)
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 Commento
Walter Roberson
Walter Roberson il 14 Ott 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.

Accedi per commentare.

Risposta accettata

Remo Pillat
Remo Pillat il 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.

Più risposte (1)

Aishwarya
Aishwarya il 25 Ott 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.

Categorie

Scopri di più su Publishers and Subscribers in Help Center e File Exchange

Prodotti


Release

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by