Why this piece of code gives error?
Show older comments
The following piece of code gives error:
Positions=rand(30,3);
fobj=@fun4sn0;
for i=1:size(Positions,1)
Fit(i) = fobj(Positions(i,:));
end
The error it gives is as:
Array indices must be positive integers or logical values.
Error in fun4sn0 (line 18)
xo(1,k)=xo(1,k)+u(i)*exp(-1i*(k-1)*pi*cosd(u(P+i)));
Error in abc (line 4)
Fit(i) = fobj(Positions(i,:));
1 Comment
KSSV
on 16 Oct 2022
Show us your function @fun4sn0
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!