필터 지우기
필터 지우기

Please help me to resolve it . I am using it in Ant Colony algorithm

조회 수: 2 (최근 30일)
sgb
sgb 2013년 4월 7일
댓글: monisha silvia 2018년 3월 18일
??? Error using ==> times
Matrix dimensions must agree.
Error in ==> ACO at 215
p = ((1-rho).*p + rho.*delta_p_current.*v).*delta_p_current +
p.*(abs(1-delta_p_current));

채택된 답변

Walter Roberson
Walter Roberson 2013년 4월 7일
All of the variables you have on that line need to be the same size() or else need to be scalars, but at least one of the variables is not the right size.
  댓글 수: 3
Walter Roberson
Walter Roberson 2013년 4월 7일
My guess is that at some point you used code similar to
[rows, cols] = size(p);
delta_p_current = zeros(rows, cols);
This is not certain to work, because of an oddity in the definition of the size() function. If you use
s = size(p);
then s would be the vector [128 128 3]
and if you used
[rows cols bands] = size(p)
then rows would be 128, cols would be 128, and bands would be 3.
But if you used
[rows cols] = size(p)
and p has more dimensions than you have variables on the left, then the last variable you gave on the left will be all the remaining dimensions multiplied together -- so in this case, rows would be 128, but cols would be (128 * 3) = 384. In this way, the product of the returned values is always the same as the number of elements in the original array, even though that startles you that the second output is not the size of the second dimension.
sgb
sgb 2013년 4월 7일
Exactly!!!!!!!!!
I changed the input image bit depth to 8 bits and resolved the problem. Thanks a lot for ur timely replies. This is really a good place for learning students. I thank this site very much

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Robotics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by