Why this gives error?
1 次查看(过去 30 天)
显示 更早的评论
LB=[0 0 0 0];
UB=[10 10 pi pi];
particles_x(1,1)=LB+rand*(UB-LB)
1 个评论
Jan
2022-4-15
I've added the error message. Please care for including the message in future questions about errors.
回答(2 个)
Jan
2022-4-15
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).
0 个评论
KuriGohan
2022-4-15
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!