Why this gives error?

5 vues (au cours des 30 derniers jours)
Sadiq Akbar
Sadiq Akbar le 15 Avr 2022
Commenté : Voss le 16 Avr 2022
LB=[0 0 0 0];
UB=[10 10 pi pi];
particles_x(1,1)=LB+rand*(UB-LB)
Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
  1 commentaire
Jan
Jan le 15 Avr 2022
I've added the error message. Please care for including the message in future questions about errors.

Connectez-vous pour commenter.

Réponses (2)

Jan
Jan le 15 Avr 2022
LB = [0 0 0 0];
UB = [10 10 pi pi];
size(LB + rand * (UB - LB))
ans = 1×2
1 4
You cannot assign a [1 x 4] vector to the scalar particles_x(1,1).

KuriGohan
KuriGohan le 15 Avr 2022
You get a 1x4 array on the right that you want to save inside the first row of the first column of the array - you cant do that. Just write particles_x=LB+rand*(UB-LB) and then particles_x(1,1) to acess what you want (at least what i think you want, that is the first element of that matrix).
  5 commentaires
Jan
Jan le 16 Avr 2022
What are "-ve values" ?
Voss
Voss le 16 Avr 2022
I gather "-ve" means "negative" (so the "-" stands for "negati", I guess).

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by