Effacer les filtres
Effacer les filtres

how to iterate a code a certain number of times

2 vues (au cours des 30 derniers jours)
Daniel Pitigala
Daniel Pitigala le 20 Sep 2023
Hello everyone
I have been devleoping a code for a kalman filter inside a mobile robot . The idea of this code is that it predicts and updates the position of the robot every 0.05 seconds up to 40 seconds. My code only calculates for one iteration while i need it to calculate for 800 iterations since there are 800 instances where the position needs to be calculated. I have tried putting it in a while loop but not sure as to why it is not working?. any help would be greatly appreciated. I have attached my code down below
Many Thanks
Daniel
  2 commentaires
Mathieu NOE
Mathieu NOE le 20 Sep 2023
we need your mat files as well
Daniel Pitigala
Daniel Pitigala le 20 Sep 2023
Hi Mathieu
I'll send them down below
thanks
Daniel

Connectez-vous pour commenter.

Réponse acceptée

Pratyush Swain
Pratyush Swain le 3 Oct 2023
Hi Daneil,
I understand you are facing issue in your while loop, I have been able to reproduce the same error and make out a key observation:
The variable r1_real holds a constant value and cannot be used with parenthesis. This can be illustrated as follows:
The r1_real holds a single element and cannot be used as an array containing multiple elements, hence r1_real(1,k) throws error in the second iteration with k=2.
The usage of dot operator in the code implies you are treating your variables as array but please verify the type of value held by the variable. You can investigate the same by using leveraging the workspace or command window.
Hope this helps.

Plus de réponses (0)

Catégories

En savoir plus sur Robotics dans Help Center et File Exchange

Tags

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by