Sir I found error when I am using these codes. Codes are shown in the figure......
1 次查看(过去 30 天)
显示 更早的评论
In this the problem is occuring is matrix dimension is not satisfied.....So how I do properly???
1 个评论
Stephan
2018-10-2
Your chances for getting an answer will rise if you attach code and data instead of screenshots.
采纳的回答
Guillaume
2018-10-2
All these squigly lines and orange marks in your screenshot is matlab telling you that there may be problems with your code. You should follow the advice that the editor give you and endeavour to have no warning.
With regards to your error, all we can say is that x is not a vector with 2 column, so when it's transposed it's not a vector with 2 rows and thus does not have the same number of rows as aS(:, j). Since only you know what x is, we can't tell you how to fix it, particularly since the only thing you've provided is pictures of the code, not the actual code itself. I would recommend you learn how to debug your code. Step through the code and check that it actually does what you meant it to do by looking at the state of the variables.
Note that if it's not your code and that it was written on matlab R2016b or later, it's possible that the offending line use implicit expansion, in which case
bs(j) = sum(bsxfun(@minus, x', as(:, j)) .^ 6);
may fix the error. If that is the case, you will most likely encounter the same problem in many more places.
2 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!