Info
此问题已关闭。 请重新打开它进行编辑或回答。
how to fix this error matrix dimension must agree
1 次查看(过去 30 天)
显示 更早的评论
just look at my attached files
if i take probability of fitness for p1 and p2
p1=0.7 and p2=0.3
where n is number of nodes in wireless sensor network
for i=1:n
Fit = p1|(nerst(:))| + p2 .*sum (resdialenergy(:))
fprintf('fitness value is : %d values.\n', Fit);
end
here im not getting any fitness values it showing empty array for all node. tell me how to solve that
1 个评论
Walter Roberson
2020-1-22
If you have an emergency you should contact ambulance or fire department or police. We are unable to provide emergency assistance around the world.
回答(1 个)
Chuguang Pan
2020-1-22
The p1 matrix is 1x100.
nerst(:) will turn a matrix nerst which is 1x100 to 100x1.
A matrix with size of 1x100 can't | with a matrix with size of 100x1.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!