Why this gives error?
Mostrar comentarios más antiguos
LB=[0 0 0 0];
UB=[10 10 pi pi];
particles_x(1,1)=LB+rand*(UB-LB)
1 comentario
Jan
el 15 de Abr. de 2022
I've added the error message. Please care for including the message in future questions about errors.
Respuestas (2)
LB = [0 0 0 0];
UB = [10 10 pi pi];
size(LB + rand * (UB - LB))
You cannot assign a [1 x 4] vector to the scalar particles_x(1,1).
KuriGohan
el 15 de Abr. de 2022
0 votos
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 comentarios
Sadiq Akbar
el 15 de Abr. de 2022
KuriGohan
el 15 de Abr. de 2022
Acess just what you want - in your case:
LB=[0 0 0 0];
UB=[10 10 pi pi];
particles_x(1,:)=LB+rand*(UB-LB);
particles_x = particles_x(1,1)
Sadiq Akbar
el 15 de Abr. de 2022
Jan
el 16 de Abr. de 2022
What are "-ve values" ?
Voss
el 16 de Abr. de 2022
I gather "-ve" means "negative" (so the "-" stands for "negati", I guess).
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!